summaryrefslogtreecommitdiffstats
path: root/kexi/kexidb
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-08-23 18:33:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-08-23 18:33:22 +0900
commitdaef72a0e41f0f3203386fc24aa818633e89d943 (patch)
treea4e3df70463ae1234845728eb7076c9d469f21bb /kexi/kexidb
parent7a7c17092fcdd4772fb6e499ef13429f96ac04bb (diff)
downloadkoffice-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/kexidb')
-rw-r--r--kexi/kexidb/cursor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kexi/kexidb/cursor.h b/kexi/kexidb/cursor.h
index 8efeabb28..6f8e4d1e9 100644
--- a/kexi/kexidb/cursor.h
+++ b/kexi/kexidb/cursor.h
@@ -254,7 +254,7 @@ class KEXI_DB_EXPORT Cursor: public TQObject, public Object
protected:
//! possible results of row fetching, used for m_result
- typedef enum FetchResult { FetchError=0, FetchOK=1, FetchEnd=2 };
+ enum FetchResult { FetchError=0, FetchOK=1, FetchEnd=2 };
/*! Cursor will operate on \a conn, raw \a statement will be used to execute query. */
Cursor(Connection* conn, const TQString& statement, uint options = NoOptions );