diff options
Diffstat (limited to 'ksystemlog/src/generalOptions.cpp')
-rw-r--r-- | ksystemlog/src/generalOptions.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ksystemlog/src/generalOptions.cpp b/ksystemlog/src/generalOptions.cpp index 674f70e..9f6f642 100644 --- a/ksystemlog/src/generalOptions.cpp +++ b/ksystemlog/src/generalOptions.cpp @@ -49,13 +49,13 @@ GeneralOptions::GeneralOptions(TQWidget *parent) : TQVGroupBox* logLinesBox=new TQVGroupBox(i18n("Log Lines List"), this); new TQLabel(i18n("Maximum lines displayed:"), logLinesBox); maxLines=new TQSpinBox(10, 30000, 10, logLinesBox); - connect(maxLines, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(onOptionsChanged())); + connect(maxLines, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(onOptionsChanged())); TQToolTip::add(maxLines, i18n("<qt>Choose here the maximum number of log lines displayed in the main view.</qt>")); TQWhatsThis::add(maxLines, i18n("<qt>You can choose here the maximum number of log lines displayed in the main view.</qt>")); deleteDuplicatedLines=new TQCheckBox(i18n("Delete duplicated log lines (may be slow)"), logLinesBox); - connect(deleteDuplicatedLines, TQT_SIGNAL(clicked()), this, TQT_SLOT(onOptionsChanged())); + connect(deleteDuplicatedLines, TQ_SIGNAL(clicked()), this, TQ_SLOT(onOptionsChanged())); TQToolTip::add(deleteDuplicatedLines, i18n("<qt>Select this option if you want to delete duplicated log lines <b>(may be slow)</b>.</qt>")); TQWhatsThis::add(deleteDuplicatedLines, i18n("<qt>You can select this option if you want to delete duplicated log lines. <b>This option can slow the reading</b>.</qt>")); @@ -66,7 +66,7 @@ GeneralOptions::GeneralOptions(TQWidget *parent) : TQVGroupBox* maxCharBox=new TQVGroupBox(i18n("Maximum Characters to Read per Line"), this); new TQLabel(i18n("Number of characters:"), maxCharBox); maxCharacters=new TQSpinBox(10, 30000, 10, maxCharBox); - connect(maxCharacters, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(onOptionsChanged())); + connect(maxCharacters, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(onOptionsChanged())); TQToolTip::add(maxCharacters, i18n("<qt>Choose here the maximum number of characters to read from each log line.</qt>")); TQWhatsThis::add(maxCharacters, i18n("<qt>You can choose here the maximum number of characters to read from each log line.</qt>")); @@ -75,13 +75,13 @@ GeneralOptions::GeneralOptions(TQWidget *parent) : TQVGroupBox* options= new TQVGroupBox( i18n( "Options" ), this ); deleteProcessId=new TQCheckBox(i18n("Delete process identifier from process name"), options); - connect(deleteProcessId, TQT_SIGNAL(clicked()), this, TQT_SLOT(onOptionsChanged())); + connect(deleteProcessId, TQ_SIGNAL(clicked()), this, TQ_SLOT(onOptionsChanged())); TQToolTip::add(deleteProcessId, i18n("<qt>Delete process identifier from process name.</qt>")); TQWhatsThis::add(deleteProcessId, i18n("<qt>You can select this option if you want to delete the process identifier from process name. For example, you will sometimes see in the <b>Process</b> column something like <i>cron<b>[3433]</b></i>. If this option is activated, the annoying bold part will be erased.</qt>")); colorizeLogLines=new TQCheckBox(i18n("Colorize log lines"), options); - connect(colorizeLogLines, TQT_SIGNAL(clicked()), this, TQT_SLOT(onOptionsChanged())); + connect(colorizeLogLines, TQ_SIGNAL(clicked()), this, TQ_SLOT(onOptionsChanged())); TQToolTip::add(colorizeLogLines, i18n("<qt>This option allows the colorization of log lines, depending on their log level.</qt>")); TQWhatsThis::add(colorizeLogLines, i18n("<qt>This option allows the colorization of log lines, depending on their log level. For example, an error will be in red, a warning in orange... This will help you to better see problems.</qt>")); |