diff options
author | Michele Calgaro <[email protected]> | 2023-12-20 22:30:17 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-20 22:30:17 +0900 |
commit | 1e8a010fe1ef1f1e9b605ceda2ee2f05846bc7be (patch) | |
tree | c70b47616bf89eb8b96ac9222662c2716083bbe6 | |
parent | 3c87f890580f072e4bdce6c36e6dd1cb79cf170d (diff) | |
download | tdeartwork-1e8a010fe1ef1f1e9b605ceda2ee2f05846bc7be.tar.gz tdeartwork-1e8a010fe1ef1f1e9b605ceda2ee2f05846bc7be.zip |
Replace various '#define' strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | styles/phase/config/phasestyleconfig.cpp | 2 | ||||
-rw-r--r-- | tdescreensaver/tdepartsaver/tdepartsaver.cpp | 2 | ||||
-rw-r--r-- | twin-styles/glow/config/glowconfigdialog.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/styles/phase/config/phasestyleconfig.cpp b/styles/phase/config/phasestyleconfig.cpp index d3695b83..df48f9e3 100644 --- a/styles/phase/config/phasestyleconfig.cpp +++ b/styles/phase/config/phasestyleconfig.cpp @@ -104,7 +104,7 @@ void PhaseStyleConfig::defaults() extern "C" { KDE_EXPORT TQObject* allocate_tdestyle_config(TQWidget* parent) { - return(TQT_TQOBJECT(new PhaseStyleConfig(parent))); + return(new PhaseStyleConfig(parent)); } } diff --git a/tdescreensaver/tdepartsaver/tdepartsaver.cpp b/tdescreensaver/tdepartsaver/tdepartsaver.cpp index 92517d8f..98a20ee3 100644 --- a/tdescreensaver/tdepartsaver/tdepartsaver.cpp +++ b/tdescreensaver/tdepartsaver/tdepartsaver.cpp @@ -187,7 +187,7 @@ bool KPartSaver::openURL( KURL url ) } // create kpart - m_part = (KParts::ReadOnlyPart *)factory->create( TQT_TQOBJECT(this), "kpart", "KParts::ReadOnlyPart" ); + m_part = (KParts::ReadOnlyPart *)factory->create( this, "kpart", "KParts::ReadOnlyPart" ); if( !m_part ) { kdDebug() << "Part for " << url.url() << " can't be constructed" << endl; return false; diff --git a/twin-styles/glow/config/glowconfigdialog.cpp b/twin-styles/glow/config/glowconfigdialog.cpp index f28e31c1..af13655e 100644 --- a/twin-styles/glow/config/glowconfigdialog.cpp +++ b/twin-styles/glow/config/glowconfigdialog.cpp @@ -120,7 +120,7 @@ GlowConfigDialog::GlowConfigDialog( TDEConfig * conf, TQWidget * parent ) // create signal mapper _titleButtonMapper = new TQSignalMapper(this); for( uint i=0; i<_titleButtonList.size(); i++ ) { - _titleButtonMapper->setMapping(TQT_TQOBJECT(_titleButtonList[i]), i); + _titleButtonMapper->setMapping(_titleButtonList[i], i); connect(_titleButtonList[i], TQT_SIGNAL(clicked()),_titleButtonMapper, TQT_SLOT(map())); } connect(_titleButtonMapper, TQT_SIGNAL(mapped(int)),this, TQT_SLOT(slotTitleButtonClicked(int))); |