author | llornkcor <llornkcor> | 2004-09-28 05:54:30 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2004-09-28 05:54:30 (UTC) |
commit | c6daaf1849427191cb449e742681629bdaee4570 (patch) (side-by-side diff) | |
tree | 4864b281a4de726de8eeaff9d13c84b1426fb5ba | |
parent | 9c8f2e26e05be9230ed960d4b4ed21dc658df33e (diff) | |
download | opie-c6daaf1849427191cb449e742681629bdaee4570.zip opie-c6daaf1849427191cb449e742681629bdaee4570.tar.gz opie-c6daaf1849427191cb449e742681629bdaee4570.tar.bz2 |
treble and bass sliders not being hidden on system that dont have those devices
-rw-r--r-- | core/applets/volumeapplet/volume.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/applets/volumeapplet/volume.cpp b/core/applets/volumeapplet/volume.cpp index 276f47f..6a14d07 100644 --- a/core/applets/volumeapplet/volume.cpp +++ b/core/applets/volumeapplet/volume.cpp @@ -244,22 +244,21 @@ VolumeControl::VolumeControl ( VolumeApplet *icon, bool /*showMic*/, QWidget *pa 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::inst ( )-> series ( ) == Model_iPAQ ) { + if ( !ODevice::inst()->modelString().contains( "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; |