diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 15:12:51 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 15:12:51 -0600 |
commit | 65eca7929c22f0f0bc64135c02d85d1243df376c (patch) | |
tree | 5b47361590fb6693a0f6258d6a8d725856ef2ad9 /kview/modules/effects | |
parent | cd6d514066c22206c388eddbb7fbec32648dbaeb (diff) | |
download | tdegraphics-65eca7929c22f0f0bc64135c02d85d1243df376c.tar.gz tdegraphics-65eca7929c22f0f0bc64135c02d85d1243df376c.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'kview/modules/effects')
-rw-r--r-- | kview/modules/effects/kvieweffects.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kview/modules/effects/kvieweffects.cpp b/kview/modules/effects/kvieweffects.cpp index a2e57327..4b717da7 100644 --- a/kview/modules/effects/kvieweffects.cpp +++ b/kview/modules/effects/kvieweffects.cpp @@ -37,13 +37,13 @@ KViewEffects::KViewEffects( TQObject* parent, const char* name, const TQStringLi delete viewerList; if( m_pViewer ) { - KAction * gammaaction = new KAction( i18n( "&Gamma Correction..." ), 0, 0, + TDEAction * gammaaction = new TDEAction( i18n( "&Gamma Correction..." ), 0, 0, this, TQT_SLOT( gamma() ), actionCollection(), "plugin_effects_gamma" ); - KAction * blendaction = new KAction( i18n( "&Blend Color..." ), 0, 0, + TDEAction * blendaction = new TDEAction( i18n( "&Blend Color..." ), 0, 0, this, TQT_SLOT( blend() ), actionCollection(), "plugin_effects_blend" ); - KAction * intensityaction = new KAction( i18n( "Change &Intensity (Brightness)..." ), 0, 0, + TDEAction * intensityaction = new TDEAction( i18n( "Change &Intensity (Brightness)..." ), 0, 0, this, TQT_SLOT( intensity() ), actionCollection(), "plugin_effects_intensity" ); gammaaction->setEnabled( m_pViewer->canvas()->image() != 0 ); |