summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@nokia.com>2009-11-09 15:01:32 (GMT)
committerJoerg Bornemann <joerg.bornemann@nokia.com>2009-11-09 15:01:32 (GMT)
commitc9aa65bf79fdd09ad5d6405ba1d127888e26fd26 (patch)
tree996d8a137ea742148b09b350ab89bf30449dcb46 /src
parentfff4ca8924e92c30ae62c0c8c902b2d42d788653 (diff)
downloadQt-c9aa65bf79fdd09ad5d6405ba1d127888e26fd26.zip
Qt-c9aa65bf79fdd09ad5d6405ba1d127888e26fd26.tar.gz
Qt-c9aa65bf79fdd09ad5d6405ba1d127888e26fd26.tar.bz2
compile fix for tst_qfile on Windows CE
Changed the signature of QT_OPEN to be the same on all platforms. Reviewed-by: thartman
Diffstat (limited to 'src')
-rw-r--r--src/corelib/kernel/qfunctions_wince.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/kernel/qfunctions_wince.h b/src/corelib/kernel/qfunctions_wince.h
index f7ca195..020a6c7 100644
--- a/src/corelib/kernel/qfunctions_wince.h
+++ b/src/corelib/kernel/qfunctions_wince.h
@@ -192,7 +192,7 @@ int qt_wince__rmdir(const char *dirname);
int qt_wince__access( const char *path, int pmode );
int qt_wince__rename( const char *oldname, const char *newname );
int qt_wince__remove( const char *name );
-int qt_wince_open( const char *filename, int oflag, int pmode );
+int qt_wince_open( const char *filename, int oflag, int pmode = 0 );
int qt_wince_stat( const char *path, struct stat *buffer );
int qt_wince__fstat( int handle, struct stat *buffer);