diff options
Diffstat (limited to 'src/knowitpref.cpp')
-rw-r--r-- | src/knowitpref.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/knowitpref.cpp b/src/knowitpref.cpp index f48deb0..217b4ab 100644 --- a/src/knowitpref.cpp +++ b/src/knowitpref.cpp @@ -268,7 +268,7 @@ KnowitPreferences::KnowitPreferences() TQHBox* topBox = new TQHBox(page); tqlayout->addWidget(topBox); TQLabel * label1 = new TQLabel(i18n("Date Format: "), topBox); - label1->setFixedSize(label1->tqsizeHint()); + label1->setFixedSize(label1->sizeHint()); insertDatePreview = new TQLabel("", topBox); TQHBox *tmpBox = new TQHBox(page); @@ -284,8 +284,8 @@ KnowitPreferences::KnowitPreferences() insertDateUnderlineButton = new TQToolButton(tmpBox, "InsertDateUnderlineButton"); insertDateUnderlineButton->setIconSet(TQIconSet(KGlobal::iconLoader()->loadIcon("text_under", KIcon::Toolbar))); insertDateUnderlineButton->setToggleButton(true); - insertDateColorButton->setFixedSize(insertDateBoldButton->tqsizeHint()); - insertDateFormatEdit->setMinimumWidth(6*insertDateBoldButton->tqsizeHint().width()); + insertDateColorButton->setFixedSize(insertDateBoldButton->sizeHint()); + insertDateFormatEdit->setMinimumWidth(6*insertDateBoldButton->sizeHint().width()); tqlayout->addStretch(1); setIconListAllVisible(true); @@ -379,7 +379,7 @@ void KnowitPreferences::slotUpdateDatePreview() if(insertDateItalicButton->isOn()) str +="<i>"; if(insertDateUnderlineButton->isOn()) str += "<u>"; str += "<font COLOR=\""+insertDateColorButton->color().name()+"\">"; - str += TQString("%1").tqarg(TQDateTime::tqcurrentDateTime().toString(insertDateFormatEdit->text())); + str += TQString("%1").tqarg(TQDateTime::currentDateTime().toString(insertDateFormatEdit->text())); str += "</font>"; if(insertDateUnderlineButton->isOn()) str += "</u>"; if(insertDateItalicButton->isOn()) str +="</i>"; |