author | zecke <zecke> | 2004-02-08 19:53:13 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-02-08 19:53:13 (UTC) |
commit | f345ae92a187aebbe014775324fcb5ffe0042e5a (patch) (side-by-side diff) | |
tree | 4e99138a88e83d36f42224ac49773809afd1aa81 | |
parent | 5f698069bca9dde2c8be9ff1bf863ee3a7a33cf0 (diff) | |
download | opie-f345ae92a187aebbe014775324fcb5ffe0042e5a.zip opie-f345ae92a187aebbe014775324fcb5ffe0042e5a.tar.gz opie-f345ae92a187aebbe014775324fcb5ffe0042e5a.tar.bz2 |
Fix return type to void
-rw-r--r-- | library/qpeapplication.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/qpeapplication.h b/library/qpeapplication.h index a884046..c0f0bfc 100644 --- a/library/qpeapplication.h +++ b/library/qpeapplication.h @@ -101,49 +101,49 @@ public: }; static void setStylusOperation( QWidget*, StylusMode ); static StylusMode stylusOperation( QWidget* ); enum InputMethodHint { Normal, AlwaysOff, AlwaysOn }; enum screenSaverHint { Disable = 0, DisableLightOff = 1, DisableSuspend = 2, Enable = 100 }; static void setInputMethodHint( QWidget *, InputMethodHint ); static InputMethodHint inputMethodHint( QWidget * ); void showMainWidget( QWidget*, bool nomax=FALSE ); void showMainDocumentWidget( QWidget*, bool nomax=FALSE ); static void showDialog( QDialog*, bool nomax=FALSE ); static int execDialog( QDialog*, bool nomax=FALSE ); - static int showWidget( QWidget*, bool nomax=FALSE ); + static void showWidget( QWidget*, bool nomax=FALSE ); /* Merge setTempScreenSaverMode */ #ifdef QTOPIA_INTERNAL_INITAPP void initApp( int argv, char **argv ); #endif static void setKeepRunning(); bool keepRunning() const; bool keyboardGrabbed() const; int exec(); signals: void clientMoused(); void timeChanged(); void clockChanged( bool pm ); void micChanged( bool muted ); void volumeChanged( bool muted ); void appMessage( const QCString& msg, const QByteArray& data); void weekChanged( bool startOnMonday ); void dateFormatChanged( DateFormat ); void flush(); void reload(); /* linkChanged signal */ @@ -187,49 +187,49 @@ private: }; inline void QPEApplication::showDialog( QDialog* d, bool nomax ) { QSize sh = d->sizeHint(); int w = QMAX(sh.width(),d->width()); int h = QMAX(sh.height(),d->height()); if ( !nomax && ( w > qApp->desktop()->width()*3/4 || h > qApp->desktop()->height()*3/4 ) ) { d->showMaximized(); } else { d->resize(w,h); d->show(); } } inline int QPEApplication::execDialog( QDialog* d, bool nomax ) { showDialog(d,nomax); return d->exec(); } -inline int QPEApplication::showWidget( QWidget* wg, bool nomax ) +inline void QPEApplication::showWidget( QWidget* wg, bool nomax ) { QSize sh = wg->sizeHint(); int w = QMAX(sh.width(),wg->width()); int h = QMAX(sh.height(),wg->height()); if ( !nomax && ( w > qApp->desktop()->width()*3/4 || h > qApp->desktop()->height()*3/4 ) ) { wg->showMaximized(); } else { wg->resize(w,h); wg->show(); } } enum Transformation { Rot0, Rot90, Rot180, Rot270 }; /* from qgfxtransformed_qws.cpp */ inline int TransToDeg ( Transformation t ) { int d = static_cast<int>( t ); return d * 90; } inline Transformation DegToTrans ( int d ) |