diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-08-23 18:33:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-08-23 18:33:22 +0900 |
commit | daef72a0e41f0f3203386fc24aa818633e89d943 (patch) | |
tree | a4e3df70463ae1234845728eb7076c9d469f21bb /kexi/kexiutils | |
parent | 7a7c17092fcdd4772fb6e499ef13429f96ac04bb (diff) | |
download | koffice-daef72a0e41f0f3203386fc24aa818633e89d943.tar.gz koffice-daef72a0e41f0f3203386fc24aa818633e89d943.zip |
Fixed typedef-related warnings from compiler. Also fixed warning on
keximdb, indirectly.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kexi/kexiutils')
-rw-r--r-- | kexi/kexiutils/validator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kexi/kexiutils/validator.h b/kexi/kexiutils/validator.h index 88d76b06..b3e77b9d 100644 --- a/kexi/kexiutils/validator.h +++ b/kexi/kexiutils/validator.h @@ -45,7 +45,7 @@ namespace KexiUtils { class KEXIUTILS_EXPORT Validator : public TQValidator { public: - typedef enum Result { Error = 0, Ok = 1, Warning = 2 }; + enum Result { Error = 0, Ok = 1, Warning = 2 }; Validator(TQObject * parent = 0, const char * name = 0); virtual ~Validator(); |