summaryrefslogtreecommitdiffstats
path: root/kalarm/fontcolour.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kalarm/fontcolour.cpp')
-rw-r--r--kalarm/fontcolour.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kalarm/fontcolour.cpp b/kalarm/fontcolour.cpp
index 94497b96..a59785c1 100644
--- a/kalarm/fontcolour.cpp
+++ b/kalarm/fontcolour.cpp
@@ -89,13 +89,13 @@ FontColourChooser::FontColourChooser(TQWidget *parent, const char *name,
{
TQHBoxLayout* tqlayout = new TQHBoxLayout(topLayout);
TQPushButton* button = new TQPushButton(i18n("Add Co&lor..."), page);
- button->setFixedSize(button->tqsizeHint());
+ button->setFixedSize(button->sizeHint());
connect(button, TQT_SIGNAL(clicked()), TQT_SLOT(slotAddColour()));
TQWhatsThis::add(button, i18n("Choose a new color to add to the color selection list."));
tqlayout->addWidget(button);
mRemoveColourButton = new TQPushButton(i18n("&Remove Color"), page);
- mRemoveColourButton->setFixedSize(mRemoveColourButton->tqsizeHint());
+ mRemoveColourButton->setFixedSize(mRemoveColourButton->sizeHint());
connect(mRemoveColourButton, TQT_SIGNAL(clicked()), TQT_SLOT(slotRemoveColour()));
TQWhatsThis::add(mRemoveColourButton,
i18n("Remove the color currently shown in the background color chooser, from the color selection list."));
@@ -106,7 +106,7 @@ FontColourChooser::FontColourChooser(TQWidget *parent, const char *name,
{
TQHBoxLayout* tqlayout = new TQHBoxLayout(topLayout);
mDefaultFont = new CheckBox(i18n("Use &default font"), page);
- mDefaultFont->setMinimumSize(mDefaultFont->tqsizeHint());
+ mDefaultFont->setMinimumSize(mDefaultFont->sizeHint());
connect(mDefaultFont, TQT_SIGNAL(toggled(bool)), TQT_SLOT(slotDefaultFontToggled(bool)));
TQWhatsThis::add(mDefaultFont,
i18n("Check to use the default font current at the time the alarm is displayed."));