From 2b75e2ead19b519a6065e80d3249c9e92f035d44 Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Mon, 21 May 2012 20:31:14 -0500 Subject: Fix inadvertent "Qt::" remnants. --- kmix/kmix.cpp | 5 ++--- kmix/kmixprefdlg.cpp | 2 +- kmix/ksmallslider.cpp | 2 +- kmix/viewapplet.cpp | 2 +- kmix/viewapplet.h | 2 +- kmix/viewgrid.cpp | 6 +++--- kmix/viewsliders.cpp | 2 +- kmix/viewsurround.cpp | 2 +- kmix/viewswitches.cpp | 4 ++-- 9 files changed, 13 insertions(+), 14 deletions(-) (limited to 'kmix') diff --git a/kmix/kmix.cpp b/kmix/kmix.cpp index 462d655b..08333825 100644 --- a/kmix/kmix.cpp +++ b/kmix/kmix.cpp @@ -521,12 +521,11 @@ KMixWindow::applyPrefs( KMixPrefDlg *prefDlg ) KMessageBox::information(0,msg); } if ( prefDlg->_rbVertical->isChecked() ) { - //TQString "For a change of language to take place, quit and restart KDiff3."; - //kdDebug(67100) << "KMix should change toQt::Vertical layout\n"; + //kdDebug(67100) << "KMix should change to Vertical layout\n"; m_toplevelOrientation = Qt::Vertical; } else if ( prefDlg->_rbHorizontal->isChecked() ) { - //kdDebug(67100) << "KMix should change toQt::Horizontal layout\n"; + //kdDebug(67100) << "KMix should change to Horizontal layout\n"; m_toplevelOrientation = Qt::Horizontal; } m_autoStart = prefDlg->m_autoStartChk->isChecked(); diff --git a/kmix/kmixprefdlg.cpp b/kmix/kmixprefdlg.cpp index 2185cb47..dbf2ae93 100644 --- a/kmix/kmixprefdlg.cpp +++ b/kmix/kmixprefdlg.cpp @@ -98,7 +98,7 @@ KMixPrefDlg::KMixPrefDlg( TQWidget *parent ) TQButtonGroup* orientationGroup = new TQButtonGroup( 2, Qt::Horizontal, i18n("Orientation"), m_generalTab ); //orientationLayout->add(orientationGroup); orientationGroup->setRadioButtonExclusive(true); - TQLabel* qlb = new TQLabel( i18n("Slider Qt::Orientation: "), m_generalTab ); + TQLabel* qlb = new TQLabel( i18n("Slider Orientation: "), m_generalTab ); _rbHorizontal = new TQRadioButton(i18n("&Horizontal"), m_generalTab ); _rbVertical = new TQRadioButton(i18n("&Vertical" ), m_generalTab ); orientationGroup->insert(_rbHorizontal); diff --git a/kmix/ksmallslider.cpp b/kmix/ksmallslider.cpp index 93f18d65..b1f6569e 100644 --- a/kmix/ksmallslider.cpp +++ b/kmix/ksmallslider.cpp @@ -98,7 +98,7 @@ int KSmallSlider::valueFromPosition( int p ) const return TQRangeControl::valueFromPosition( avail - p, avail ); } else { - //Qt::Horizontal everything is fine. Slider values match with Coordinate System + //Horizontal everything is fine. Slider values match with Coordinate System return TQRangeControl::valueFromPosition( p, available() ); } } diff --git a/kmix/viewapplet.cpp b/kmix/viewapplet.cpp index b81a27f1..702dae82 100644 --- a/kmix/viewapplet.cpp +++ b/kmix/viewapplet.cpp @@ -118,7 +118,7 @@ TQWidget* ViewApplet::add(MixDevice *md) false, // Show Mute LED false, // Show Record LED true, // Small - sliderOrientation, // Qt::Orientation + sliderOrientation, // Orientation this, // parent this, // View widget md->name().latin1() diff --git a/kmix/viewapplet.h b/kmix/viewapplet.h index f1e3d032..a5e32611 100644 --- a/kmix/viewapplet.h +++ b/kmix/viewapplet.h @@ -40,7 +40,7 @@ private: TQBoxLayout* _layoutMDW; // Position of the applet (pLeft, pRight, pTop, pBottom) //KPanelApplet::Position _KMIXposition; - // Qt::Orientation of the applet (horizontal or vertical) + // Orientation of the applet (horizontal or vertical) Qt::Orientation _viewOrientation; }; diff --git a/kmix/viewgrid.cpp b/kmix/viewgrid.cpp index 72bae125..e6aa2045 100644 --- a/kmix/viewgrid.cpp +++ b/kmix/viewgrid.cpp @@ -88,7 +88,7 @@ TQWidget* ViewGrid::add(MixDevice *md) mdw = new MDWEnum( _mixer, // the mixer for this device md, // MixDevice (parameter) - orientation, // Qt::Orientation + orientation, // Orientation this, // parent this, // View widget md->name().latin1() @@ -101,7 +101,7 @@ TQWidget* ViewGrid::add(MixDevice *md) _mixer, // the mixer for this device md, // MixDevice (parameter) false, // Small - orientation, // Qt::Orientation + orientation, // Orientation this, // parent this, // View widget md->name().latin1() @@ -117,7 +117,7 @@ TQWidget* ViewGrid::add(MixDevice *md) true, // Show Mute LED true, // Show Record LED false, // Small - orientation, // Qt::Orientation + orientation, // Orientation this, // parent this, // View widget md->name().latin1() diff --git a/kmix/viewsliders.cpp b/kmix/viewsliders.cpp index ea97e2aa..b36f7c2f 100644 --- a/kmix/viewsliders.cpp +++ b/kmix/viewsliders.cpp @@ -93,7 +93,7 @@ TQWidget* ViewSliders::add(MixDevice *md) true, // Show Mute LED true, // Show Record LED false, // Small - orientation, // Qt::Orientation + orientation, // Orientation this, // parent this, // View widget md->name().latin1() diff --git a/kmix/viewsurround.cpp b/kmix/viewsurround.cpp index 8e0b6df5..27cc1635 100644 --- a/kmix/viewsurround.cpp +++ b/kmix/viewsurround.cpp @@ -259,7 +259,7 @@ MixDeviceWidget* ViewSurround::createMDW(MixDevice *md, bool small, Qt::Orientat false, // Show Mute LED false, // Show Record LED small, // Small - orientation, // Qt::Orientation + orientation, // Orientation this, // parent this, // View widget md->name().latin1() diff --git a/kmix/viewswitches.cpp b/kmix/viewswitches.cpp index f2277ebf..15b555ac 100644 --- a/kmix/viewswitches.cpp +++ b/kmix/viewswitches.cpp @@ -92,7 +92,7 @@ TQWidget* ViewSwitches::add(MixDevice *md) mdw = new MDWEnum( _mixer, // the mixer for this device md, // MixDevice (parameter) - orientation, // Qt::Orientation + orientation, // Orientation this, // parent this, // View widget md->name().latin1() @@ -107,7 +107,7 @@ TQWidget* ViewSwitches::add(MixDevice *md) _mixer, // the mixer for this device md, // MixDevice (parameter) false, // Small - orientation, // Qt::Orientation + orientation, // Orientation this, // parent this, // View widget md->name().latin1() -- cgit v1.2.1