summaryrefslogtreecommitdiffstats
path: root/kexi/kexidb
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2018-08-23 18:33:22 +0900
committerMichele Calgaro <[email protected]>2018-08-23 18:50:13 +0900
commit5c002058c053acade045f0be8e0f726e17ea96a2 (patch)
tree1e4eb01d51c326b0962c27d4d40323b5b7827935 /kexi/kexidb
parentf3e216f001d6fb6af75f9728930bddf3da59cccf (diff)
downloadkoffice-5c002058c053acade045f0be8e0f726e17ea96a2.tar.gz
koffice-5c002058c053acade045f0be8e0f726e17ea96a2.zip
Fixed typedef-related warnings from compiler. Also fixed warning on
keximdb, indirectly. Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit daef72a0e41f0f3203386fc24aa818633e89d943)
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 8efeabb2..6f8e4d1e 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 );