diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-04 14:17:58 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-04 14:17:58 -0600 |
commit | 4c6870471be96131ae42a7e20355e6f06029a6d9 (patch) | |
tree | 956359e3bdd20d67f4ec60bf724701afc86763a1 /kpf/src/BandwidthGraph.cpp | |
parent | 2cb1d1c8edcbfae77e25dad2f3aa97e09c627a06 (diff) | |
download | tdenetwork-4c6870471be96131ae42a7e20355e6f06029a6d9.tar.gz tdenetwork-4c6870471be96131ae42a7e20355e6f06029a6d9.zip |
Rename KIcon to enhance compatibility with KDE4
Diffstat (limited to 'kpf/src/BandwidthGraph.cpp')
-rw-r--r-- | kpf/src/BandwidthGraph.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kpf/src/BandwidthGraph.cpp b/kpf/src/BandwidthGraph.cpp index ba02e69d..bbc56747 100644 --- a/kpf/src/BandwidthGraph.cpp +++ b/kpf/src/BandwidthGraph.cpp @@ -144,15 +144,15 @@ namespace KPF buffer_.resize(size()); if ( width() > 48 ) - bgPix_ = TDEGlobal::iconLoader()->loadIcon( "kpf", KIcon::Panel, 48 ); + bgPix_ = TDEGlobal::iconLoader()->loadIcon( "kpf", TDEIcon::Panel, 48 ); else if ( width() > 32 ) - bgPix_ = TDEGlobal::iconLoader()->loadIcon( "kpf", KIcon::Panel, 32 ); + bgPix_ = TDEGlobal::iconLoader()->loadIcon( "kpf", TDEIcon::Panel, 32 ); else if ( width() > 16 ) - bgPix_ = TDEGlobal::iconLoader()->loadIcon( "kpf", KIcon::Panel, 16 ); + bgPix_ = TDEGlobal::iconLoader()->loadIcon( "kpf", TDEIcon::Panel, 16 ); else bgPix_.fill( this, TQPoint( 0, 0 ) ); - KIconEffect::semiTransparent( bgPix_ ); + TDEIconEffect::semiTransparent( bgPix_ ); if (width() < 2) { |