summaryrefslogtreecommitdiffstats
path: root/src/optionsdetailed.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:41 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:41 -0600
commitef9e895fa20a6118dacbd997a1ed7486e14b8ec6 (patch)
tree1a4f00ea9a3840933a87b3447a923222e53d092c /src/optionsdetailed.cpp
parent4614cf2e7bce250f5b9cdef409cb89330d60bb1d (diff)
downloadsoundkonverter-ef9e895fa20a6118dacbd997a1ed7486e14b8ec6.tar.gz
soundkonverter-ef9e895fa20a6118dacbd997a1ed7486e14b8ec6.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 4614cf2e7bce250f5b9cdef409cb89330d60bb1d.
Diffstat (limited to 'src/optionsdetailed.cpp')
-rwxr-xr-xsrc/optionsdetailed.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/optionsdetailed.cpp b/src/optionsdetailed.cpp
index 9f19685..7072474 100755
--- a/src/optionsdetailed.cpp
+++ b/src/optionsdetailed.cpp
@@ -3,7 +3,7 @@
#include "convertpluginloader.h"
#include "config.h"
-#include <layout.h>
+#include <tqlayout.h>
#include <tqlabel.h>
#include <tqcheckbox.h>
#include <tqtooltip.h>
@@ -53,7 +53,7 @@ OptionsDetailed::OptionsDetailed( Config* _config, TQWidget *parent, const char
this, TQT_SLOT(somethingChanged())
);
cQualityMode = new KComboBox( normalOptions, "cQualityMode" );
- cQualityMode->setFixedSize( cQualityMode->sizeHint() );
+ cQualityMode->setFixedSize( cQualityMode->tqsizeHint() );
normalTopBox->addWidget( cQualityMode, 0, TQt::AlignVCenter );
connect( cQualityMode, TQT_SIGNAL(activated(int)),
this, TQT_SLOT(qualityModeChanged())
@@ -686,9 +686,9 @@ void OptionsDetailed::qualityChanged()
}
}
- TQToolTip::add( iQuality, i18n("This is a relative quality between 0 and 100.\nThe higher this number the higher is the quality.\nsoundKonverter will convert it into the file format's quality format.\nSee the \"What's this?\" for more informations.\n\nCurrent parameter: \"%1\"").arg(quality) );
+ TQToolTip::add( iQuality, i18n("This is a relative quality between 0 and 100.\nThe higher this number the higher is the quality.\nsoundKonverter will convert it into the file format's quality format.\nSee the \"What's this?\" for more informations.\n\nCurrent parameter: \"%1\"").tqarg(quality) );
// TQToolTip toolTip( iQuality );
-// toolTip.tip( i18n("Current parameter: \"%1\"").arg(quality) );
+// toolTip.tip( i18n("Current parameter: \"%1\"").tqarg(quality) );
}
}