author | zecke <zecke> | 2004-09-07 13:33:28 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-09-07 13:33:28 (UTC) |
commit | 3f03efc7d90e42a048f6d6381b2905823407d6c0 (patch) (side-by-side diff) | |
tree | ffcf5808ea821a85f31b25214a1fd9b83909b778 | |
parent | 71d6096060fce0643de979b28bbbf2ad7cd16785 (diff) | |
download | opie-3f03efc7d90e42a048f6d6381b2905823407d6c0.zip opie-3f03efc7d90e42a048f6d6381b2905823407d6c0.tar.gz opie-3f03efc7d90e42a048f6d6381b2905823407d6c0.tar.bz2 |
Fix compiler warning
-rw-r--r-- | core/settings/button/buttonsettings.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/settings/button/buttonsettings.cpp b/core/settings/button/buttonsettings.cpp index 326554b..d286369 100644 --- a/core/settings/button/buttonsettings.cpp +++ b/core/settings/button/buttonsettings.cpp @@ -42,34 +42,34 @@ struct buttoninfo { const ODeviceButton *m_button; int m_index; OQCopMessage m_pmsg; QLabel *m_picon; QLabel *m_plabel; OQCopMessage m_hmsg; QLabel *m_hicon; QLabel *m_hlabel; bool m_pdirty : 1; bool m_hdirty : 1; }; -ButtonSettings::ButtonSettings ( QWidget *parent , const char *name, bool modal, WFlags f ) - : QDialog ( 0, "ButtonSettings", false, WStyle_ContextHelp ) +ButtonSettings::ButtonSettings ( QWidget *parent , const char *, bool, WFlags ) + : QDialog ( parent, "ButtonSettings", false, WStyle_ContextHelp ) { const QValueList <ODeviceButton> &buttons = ODevice::inst ( )-> buttons ( ); (void) ButtonUtils::inst ( ); // initialise setCaption ( tr( "Button Settings" )); QVBoxLayout *toplay = new QVBoxLayout ( this, 3, 3 ); QLabel *l = new QLabel ( tr( "<center>Press or hold the button you want to remap.</center>" ), this ); toplay-> addWidget ( l ); QGridLayout *lay = new QGridLayout ( toplay ); lay-> setMargin ( 0 ); lay-> setColStretch ( 0, 0 ); lay-> setColStretch ( 1, 0 ); lay-> setColStretch ( 2, 0 ); |