diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-04 14:18:14 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-04 14:18:14 -0600 |
commit | b97ee238f88e9578da228388210cd8cab5360778 (patch) | |
tree | 8bf3ab88929af70826ebe3b84434c3403dc71c7d /korganizer/kowhatsnextview.cpp | |
parent | 656055dae6f13ee65d66fabf9041b288d81710af (diff) | |
download | tdepim-b97ee238f88e9578da228388210cd8cab5360778.tar.gz tdepim-b97ee238f88e9578da228388210cd8cab5360778.zip |
Rename KIcon to enhance compatibility with KDE4
Diffstat (limited to 'korganizer/kowhatsnextview.cpp')
-rw-r--r-- | korganizer/kowhatsnextview.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/korganizer/kowhatsnextview.cpp b/korganizer/kowhatsnextview.cpp index 14bae60c1..b2a3b402d 100644 --- a/korganizer/kowhatsnextview.cpp +++ b/korganizer/kowhatsnextview.cpp @@ -88,9 +88,9 @@ int KOWhatsNextView::currentDateCount() void KOWhatsNextView::updateView() { - KIconLoader kil("tdepim"); + TDEIconLoader kil("tdepim"); TQString *ipath = new TQString(); - kil.loadIcon("tdepim",KIcon::NoGroup,32,KIcon::DefaultState,ipath); + kil.loadIcon("tdepim",TDEIcon::NoGroup,32,TDEIcon::DefaultState,ipath); mText = "<table width=\"100%\">\n"; mText += "<tr bgcolor=\"#3679AD\"><td><h1>"; @@ -117,7 +117,7 @@ void KOWhatsNextView::updateView() if (events.count() > 0) { mText += "<p></p>"; - kil.loadIcon("appointment",KIcon::NoGroup,22,KIcon::DefaultState,ipath); + kil.loadIcon("appointment",TDEIcon::NoGroup,22,TDEIcon::DefaultState,ipath); mText += "<h2><img src=\""; mText += *ipath; mText += "\">"; @@ -153,7 +153,7 @@ void KOWhatsNextView::updateView() mTodos.clear(); Todo::List todos = calendar()->todos( TodoSortDueDate, SortDirectionAscending ); if ( todos.count() > 0 ) { - kil.loadIcon("todo",KIcon::NoGroup,22,KIcon::DefaultState,ipath); + kil.loadIcon("todo",TDEIcon::NoGroup,22,TDEIcon::DefaultState,ipath); mText += "<h2><img src=\""; mText += *ipath; mText += "\">"; @@ -192,7 +192,7 @@ void KOWhatsNextView::updateView() if (me->status()==Attendee::NeedsAction && me->RSVP()) { if (replies == 0) { mText += "<p></p>"; - kil.loadIcon("reply",KIcon::NoGroup,22,KIcon::DefaultState,ipath); + kil.loadIcon("reply",TDEIcon::NoGroup,22,TDEIcon::DefaultState,ipath); mText += "<h2><img src=\""; mText += *ipath; mText += "\">"; @@ -213,7 +213,7 @@ void KOWhatsNextView::updateView() if (me->status()==Attendee::NeedsAction && me->RSVP()) { if (replies == 0) { mText += "<p></p>"; - kil.loadIcon("reply",KIcon::NoGroup,22,KIcon::DefaultState,ipath); + kil.loadIcon("reply",TDEIcon::NoGroup,22,TDEIcon::DefaultState,ipath); mText += "<h2><img src=\""; mText += *ipath; mText += "\">"; |