diff options
Diffstat (limited to 'src/gui/kdeext')
-rw-r--r-- | src/gui/kdeext/KTmpStatusMsg.cpp | 2 | ||||
-rw-r--r-- | src/gui/kdeext/KTmpStatusMsg.h | 10 | ||||
-rw-r--r-- | src/gui/kdeext/RGLed.cpp | 4 | ||||
-rw-r--r-- | src/gui/kdeext/klearlook.cpp | 8 |
4 files changed, 12 insertions, 12 deletions
diff --git a/src/gui/kdeext/KTmpStatusMsg.cpp b/src/gui/kdeext/KTmpStatusMsg.cpp index 620d7c5..3f9c127 100644 --- a/src/gui/kdeext/KTmpStatusMsg.cpp +++ b/src/gui/kdeext/KTmpStatusMsg.cpp @@ -29,7 +29,7 @@ #include "KTmpStatusMsg.h" #include "gui/application/RosegardenApplication.h" -KTmpStatusMsg::KTmpStatusMsg(const TQString& msg, KMainWindow* window, int id) +KTmpStatusMsg::KTmpStatusMsg(const TQString& msg, TDEMainWindow* window, int id) : m_mainWindow(window), m_id(id) { diff --git a/src/gui/kdeext/KTmpStatusMsg.h b/src/gui/kdeext/KTmpStatusMsg.h index 35e1adb..45c8bb2 100644 --- a/src/gui/kdeext/KTmpStatusMsg.h +++ b/src/gui/kdeext/KTmpStatusMsg.h @@ -22,10 +22,10 @@ #ifndef KTMPSTATUSMSG_H #define KTMPSTATUSMSG_H -class KMainWindow; +class TDEMainWindow; /** - * A class to create a temporary message on KMainWindow's status bar + * A class to create a temporary message on TDEMainWindow's status bar * * Use as follows : * { // some block of code starts here @@ -42,10 +42,10 @@ public: /** * Creates a new temporary status message on the status bar - * of the specified KMainWindow. + * of the specified TDEMainWindow. * The id of the text widget in the status bar can be specified */ - KTmpStatusMsg(const TQString& msg, KMainWindow*, int id = m_defaultId); + KTmpStatusMsg(const TQString& msg, TDEMainWindow*, int id = m_defaultId); ~KTmpStatusMsg(); @@ -77,7 +77,7 @@ protected: //--------------- Data members --------------------------------- - KMainWindow* m_mainWindow; + TDEMainWindow* m_mainWindow; int m_id; static int m_defaultId; diff --git a/src/gui/kdeext/RGLed.cpp b/src/gui/kdeext/RGLed.cpp index c1b9604..1edcc4f 100644 --- a/src/gui/kdeext/RGLed.cpp +++ b/src/gui/kdeext/RGLed.cpp @@ -58,12 +58,12 @@ * CVS_SILENT: fixincludes * * Revision 1.19 2001/08/08 14:35:12 hausmann - * - removed empty KActionCollection::childEvent + * - removed empty TDEActionCollection::childEvent * - added sizeHint() and minimumSizeHint() methods to KLed, as advised by * Rik in the comment in kled.h * - removed unused mousePressEvent, mouseMoveEvent and mouseReleaseEvent * handlers from KPassDlg - * - merged KToolBar::insertSeparator() and KToolBar::insertLineSeparator() + * - merged TDEToolBar::insertSeparator() and TDEToolBar::insertLineSeparator() * with their overloaded variants * * Revision 1.18 2001/04/16 22:08:43 pfeiffer diff --git a/src/gui/kdeext/klearlook.cpp b/src/gui/kdeext/klearlook.cpp index ca7f26a..2e4e69b 100644 --- a/src/gui/kdeext/klearlook.cpp +++ b/src/gui/kdeext/klearlook.cpp @@ -609,7 +609,7 @@ void KlearlookStyle::polish( TQStyleControlElementData ceData, ControlElementFla || ::tqqt_cast<TQPopupMenu *>( widget ) ) widget->setBackgroundMode( TQWidget::PaletteBackground ); - else if ( widget->inherits( "KToolBarSeparator" ) ) { + else if ( widget->inherits( "TDEToolBarSeparator" ) ) { widget->setBackgroundMode( TQWidget::NoBackground ); installObjectEventHandler(ceData, elementFlags, ptr, this); @@ -652,7 +652,7 @@ void KlearlookStyle::unPolish( TQStyleControlElementData ceData, ControlElementF ::tqqt_cast<TQPopupMenu *>( widget ) ) widget->setBackgroundMode( TQWidget::PaletteBackground ); - else if ( widget->inherits( "KToolBarSeparator" ) ) { + else if ( widget->inherits( "TDEToolBarSeparator" ) ) { widget->setBackgroundMode( PaletteBackground ); removeObjectEventHandler(ceData, elementFlags, ptr, this); @@ -715,7 +715,7 @@ bool KlearlookStyle::objectEventHandler( TQStyleControlElementData ceData, Contr return false; // Now draw the contents } - } else if ( object->inherits( "KToolBarSeparator" ) && TQEvent::Paint == event->type() ) { + } else if ( object->inherits( "TDEToolBarSeparator" ) && TQEvent::Paint == event->type() ) { TQFrame * frame = dynamic_cast<TQFrame*>( object ); if ( frame && TQFrame::NoFrame != frame->frameShape() ) { @@ -3128,7 +3128,7 @@ void KlearlookStyle::drawComplexControl( #if TDE_VERSION >= 0x30200 if ( bflags & ( Style_Down | Style_On | Style_Raised ) || onControlButtons ) #else - // CPD: Style_MouseOver obove is *needed* for KDE's KToggleActions... + // CPD: Style_MouseOver obove is *needed* for KDE's TDEToggleActions... if ( bflags & ( Style_Down | Style_On | Style_Raised | Style_MouseOver ) || onControlButtons ) #endif |