diff options
author | Timothy Pearson <[email protected]> | 2013-02-04 14:17:58 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-04 14:17:58 -0600 |
commit | 4c6870471be96131ae42a7e20355e6f06029a6d9 (patch) | |
tree | 956359e3bdd20d67f4ec60bf724701afc86763a1 /kopete/libkopete/knotification.cpp | |
parent | 2cb1d1c8edcbfae77e25dad2f3aa97e09c627a06 (diff) | |
download | tdenetwork-4c6870471be96131ae42a7e20355e6f06029a6d9.tar.gz tdenetwork-4c6870471be96131ae42a7e20355e6f06029a6d9.zip |
Rename KIcon to enhance compatibility with KDE4
Diffstat (limited to 'kopete/libkopete/knotification.cpp')
-rw-r--r-- | kopete/libkopete/knotification.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kopete/libkopete/knotification.cpp b/kopete/libkopete/knotification.cpp index e0f49646..ea28132f 100644 --- a/kopete/libkopete/knotification.cpp +++ b/kopete/libkopete/knotification.cpp @@ -163,11 +163,11 @@ void KNotification::notifyByMessagebox() void KNotification::notifyByPassivePopup(const TQPixmap &pix ) { TQString appName = TQString::fromAscii( KNotifyClient::instance()->instanceName() ); - KIconLoader iconLoader( appName ); + TDEIconLoader iconLoader( appName ); TDEConfig eventsFile( TQString::fromAscii( KNotifyClient::instance()->instanceName()+"/eventsrc" ), true, false, "data"); TDEConfigGroup config( &eventsFile, "!Global!" ); TQString iconName = config.readEntry( "IconName", appName ); - TQPixmap icon = iconLoader.loadIcon( iconName, KIcon::Small ); + TQPixmap icon = iconLoader.loadIcon( iconName, TDEIcon::Small ); TQString title = config.readEntry( "Comment", appName ); //KPassivePopup::message(title, text, icon, senderWinId); |