CVS commit by ravi: Bye, bye, obsolete setButtonOKText! M +4 -4 kfinddialog.cpp 1.20 --- kdelibs/kutils/kfinddialog.cpp #1.19:1.20 @@ -226,16 +226,16 @@ void KFindDialog::init(bool forReplace, if (forReplace) { - setButtonOKText(i18n("&Replace"), + setButtonOK(KGuiItem( i18n("&Replace"), QString::null, i18n("Start replace"), i18n("If you press the Replace button, the text you entered " "above is searched for within the document and any occurrence is " - "replaced with the replacement text.")); + "replaced with the replacement text."))); } else { - setButtonOKText(i18n("&Find"), + setButtonOK(KGuiItem( i18n("&Find"), QString::null, i18n("Start searching"), i18n("If you press the Find button, the text you entered " - "above is searched for within the document.")); + "above is searched for within the document."))); } }