diff options
author | Joerg Bornemann <joerg.bornemann@nokia.com> | 2009-11-09 15:01:32 (GMT) |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@nokia.com> | 2009-11-09 15:01:32 (GMT) |
commit | c9aa65bf79fdd09ad5d6405ba1d127888e26fd26 (patch) | |
tree | 996d8a137ea742148b09b350ab89bf30449dcb46 /src | |
parent | fff4ca8924e92c30ae62c0c8c902b2d42d788653 (diff) | |
download | Qt-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.h | 2 |
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); |