summaryrefslogtreecommitdiffstats
path: root/kmix/kmix.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-05-21 20:31:14 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-05-21 20:31:14 -0500
commit2b75e2ead19b519a6065e80d3249c9e92f035d44 (patch)
treef8635e823156b01047776b727b6f308e01087caa /kmix/kmix.cpp
parent7eb7626c8a6d819c040cd9aba0b0bca3b484fde7 (diff)
downloadtdemultimedia-2b75e2ead19b519a6065e80d3249c9e92f035d44.tar.gz
tdemultimedia-2b75e2ead19b519a6065e80d3249c9e92f035d44.zip
Fix inadvertent "Qt::" remnants.
Diffstat (limited to 'kmix/kmix.cpp')
-rw-r--r--kmix/kmix.cpp5
1 files changed, 2 insertions, 3 deletions
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();