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 /karm/task.cpp | |
parent | 656055dae6f13ee65d66fabf9041b288d81710af (diff) | |
download | tdepim-b97ee238f88e9578da228388210cd8cab5360778.tar.gz tdepim-b97ee238f88e9578da228388210cd8cab5360778.zip |
Rename KIcon to enhance compatibility with KDE4
Diffstat (limited to 'karm/task.cpp')
-rw-r--r-- | karm/task.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/karm/task.cpp b/karm/task.cpp index 7d84bcd2c..20e9c5118 100644 --- a/karm/task.cpp +++ b/karm/task.cpp @@ -62,13 +62,13 @@ void Task::init( const TQString& taskName, long minutes, long sessionTime, if (icons == 0) { icons = new TQPtrVector<TQPixmap>(8); - KIconLoader kil("karm"); // always load icons from the KArm application + TDEIconLoader kil("karm"); // always load icons from the KArm application for (int i=0; i<8; i++) { TQPixmap *icon = new TQPixmap(); TQString name; name.sprintf("watch-%d.xpm",i); - *icon = kil.loadIcon( name, KIcon::User ); + *icon = kil.loadIcon( name, TDEIcon::User ); icons->insert(i,icon); } } |