diff options
Diffstat (limited to 'kviewshell')
-rw-r--r-- | kviewshell/documentWidget.cpp | 2 | ||||
-rw-r--r-- | kviewshell/martdelist.cpp | 2 | ||||
-rw-r--r-- | kviewshell/searchWidget.cpp | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/kviewshell/documentWidget.cpp b/kviewshell/documentWidget.cpp index 04dffc75..5f1fc597 100644 --- a/kviewshell/documentWidget.cpp +++ b/kviewshell/documentWidget.cpp @@ -90,7 +90,7 @@ DocumentWidget::DocumentWidget(TQWidget *parent, PageView *sv, DocumentPageCache if (!busyIcon) { - busyIcon = new TQPixmap(TDEGlobal::iconLoader()->loadIcon("gear", KIcon::NoGroup, KIcon::SizeMedium)); + busyIcon = new TQPixmap(TDEGlobal::iconLoader()->loadIcon("gear", TDEIcon::NoGroup, TDEIcon::SizeMedium)); URShadow = new TQPixmap(); BRShadow = new TQPixmap(); diff --git a/kviewshell/martdelist.cpp b/kviewshell/martdelist.cpp index ad9f284d..883f74ea 100644 --- a/kviewshell/martdelist.cpp +++ b/kviewshell/martdelist.cpp @@ -63,7 +63,7 @@ ThumbnailWidget::ThumbnailWidget(MarkListWidget* _parent, const PageNumber& _pag if (!waitIcon) { - waitIcon = new TQPixmap(TDEGlobal::iconLoader()->loadIcon("gear", KIcon::NoGroup, KIcon::SizeMedium)); + waitIcon = new TQPixmap(TDEGlobal::iconLoader()->loadIcon("gear", TDEIcon::NoGroup, TDEIcon::SizeMedium)); } } diff --git a/kviewshell/searchWidget.cpp b/kviewshell/searchWidget.cpp index 3f4e64f5..b6a4d95d 100644 --- a/kviewshell/searchWidget.cpp +++ b/kviewshell/searchWidget.cpp @@ -46,7 +46,7 @@ SearchWidget::SearchWidget(TQWidget* parent, const char* name, WFlags fl) layout = new TQHBoxLayout(this, 4, 6, "SearchWidgetLayout"); stopButton = new TQPushButton(this, "stopButton"); - stopButton->setPixmap(TDEGlobal::iconLoader()->loadIcon("stop", KIcon::Small, KIcon::SizeSmall)); + stopButton->setPixmap(TDEGlobal::iconLoader()->loadIcon("stop", TDEIcon::Small, TDEIcon::SizeSmall)); layout->addWidget(stopButton); searchLabel = new TQLabel(this, "searchLabel"); @@ -59,12 +59,12 @@ SearchWidget::SearchWidget(TQWidget* parent, const char* name, WFlags fl) searchLabel->setBuddy(searchText); findPrevButton = new TQPushButton(this, "findPrevButton"); - findPrevButton->setPixmap(TDEGlobal::iconLoader()->loadIcon("back", KIcon::NoGroup, KIcon::SizeSmall)); + findPrevButton->setPixmap(TDEGlobal::iconLoader()->loadIcon("back", TDEIcon::NoGroup, TDEIcon::SizeSmall)); TQToolTip::add(findPrevButton, i18n("Find previous")); layout->addWidget(findPrevButton); findNextButton = new TQPushButton(this, "findNextButton"); - findNextButton->setPixmap(TDEGlobal::iconLoader()->loadIcon("forward", KIcon::NoGroup, KIcon::SizeSmall)); + findNextButton->setPixmap(TDEGlobal::iconLoader()->loadIcon("forward", TDEIcon::NoGroup, TDEIcon::SizeSmall)); TQToolTip::add(findNextButton, i18n("Find next")); layout->addWidget(findNextButton); |