diff options
Diffstat (limited to 'src/optionsdetailed.cpp')
-rwxr-xr-x | src/optionsdetailed.cpp | 8 |
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) ); } } |