author | sandman <sandman> | 2002-12-18 18:36:06 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-12-18 18:36:06 (UTC) |
commit | 25dfde78e47780c3357f8e25d8c873131fbf446d (patch) (side-by-side diff) | |
tree | a08974db59acb6809579ec264dfee4b76d9c7348 | |
parent | 9471f69c44e811781ed9f643f5b84d7b459df601 (diff) | |
download | opie-25dfde78e47780c3357f8e25d8c873131fbf446d.zip opie-25dfde78e47780c3357f8e25d8c873131fbf446d.tar.gz opie-25dfde78e47780c3357f8e25d8c873131fbf446d.tar.bz2 |
since Harlekin doesn't want to fix his typo, I'll have to do it ;)
-rw-r--r-- | core/applets/volumeapplet/volume.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/applets/volumeapplet/volume.cpp b/core/applets/volumeapplet/volume.cpp index e066a83..ed07ec4 100644 --- a/core/applets/volumeapplet/volume.cpp +++ b/core/applets/volumeapplet/volume.cpp @@ -234,49 +234,49 @@ static const char * alarm_xpm[] = { " 42|}}3'4#[;$)$44 ", "444{]]2^~~:!!#.@##/ ", "4444-%*:==!!=...../ ", " /:[.. ", " /@. ", " "}; VolumeControl::VolumeControl ( VolumeApplet *icon, bool /*showMic*/, QWidget *parent, const char *name ) : QFrame ( parent, name, WStyle_StaysOnTop | WType_Popup ) { m_icon = icon; bool has_wav_alarm = true; bool has_bass = true; bool has_treble = true; switch ( ODevice::inst ( )-> model ( )) { // we need to add other devices eventually case Model_Zaurus_SL5000: has_wav_alarm = false; //poor guys probably feeling left out... break; default: break; } - if ( !ODevice::series == Model_iPAQ ) { + if ( !ODevice::inst ( )-> series ( ) == Model_iPAQ ) { has_bass = false; has_treble = false; } setFrameStyle ( QFrame::PopupPanel | QFrame::Raised ); QGridLayout *grid = new QGridLayout ( this, 1, 1, 6, 4 ); grid-> setSpacing ( 4 ); grid-> setMargin ( 6 ); QVBoxLayout *vbox; QLabel *l; vbox = new QVBoxLayout ( ); vbox-> setSpacing ( 4 ); grid-> addLayout ( vbox, 1, 0 ); upButton = new QPushButton ( this ); upButton-> setSizePolicy ( QSizePolicy ( QSizePolicy::Minimum, QSizePolicy::Expanding )); upButton-> setPixmap ( Resource::loadPixmap ( "up" )); upButton-> setFocusPolicy ( QWidget::NoFocus ); vbox-> addWidget ( upButton ); |