Fix inadvertent "Qt::" remnants.

pull/1/head
Darrell Anderson 12 years ago
parent 7eb7626c8a
commit 2b75e2ead1

@ -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();

@ -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);

@ -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() );
}
}

@ -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()

@ -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;
};

@ -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()

@ -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()

@ -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()

@ -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()

Loading…
Cancel
Save