diff options
Diffstat (limited to 'kdevdesigner/designer')
-rw-r--r-- | kdevdesigner/designer/actioneditorimpl.h | 2 | ||||
-rw-r--r-- | kdevdesigner/designer/outputwindow.cpp | 2 | ||||
-rw-r--r-- | kdevdesigner/designer/propertyeditor.cpp | 8 |
3 files changed, 7 insertions, 5 deletions
diff --git a/kdevdesigner/designer/actioneditorimpl.h b/kdevdesigner/designer/actioneditorimpl.h index 248c9e24..a3c804bf 100644 --- a/kdevdesigner/designer/actioneditorimpl.h +++ b/kdevdesigner/designer/actioneditorimpl.h @@ -27,6 +27,8 @@ #ifndef ACTIONEDITORIMPL_H #define ACTIONEDITORIMPL_H +#include <tqlistview.h> + #include "actioneditor.h" class TQAction; diff --git a/kdevdesigner/designer/outputwindow.cpp b/kdevdesigner/designer/outputwindow.cpp index ad1cab22..33113ef5 100644 --- a/kdevdesigner/designer/outputwindow.cpp +++ b/kdevdesigner/designer/outputwindow.cpp @@ -97,7 +97,7 @@ static void debugMessageOutput( TQtMsgType type, const char *msg ) TQString s( msg ); s += "\n"; - if ( type != QtFatalMsg ) { + if ( type != TQtFatalMsg ) { if ( debugoutput && debugoutput->isVisible() ) debugoutput->append( s ); else if ( OutputWindow::oldMsgHandler && OutputWindow::oldMsgHandler != debugMessageOutput ) diff --git a/kdevdesigner/designer/propertyeditor.cpp b/kdevdesigner/designer/propertyeditor.cpp index 402c1117..01a2bb9f 100644 --- a/kdevdesigner/designer/propertyeditor.cpp +++ b/kdevdesigner/designer/propertyeditor.cpp @@ -2982,9 +2982,9 @@ static TQVariant::Type type_to_variant( const TQString &s ) if ( s == "Palette" ) return TQVariant::Palette; if ( s == "ColorGroup" ) - return (QVariant::Type)TQVariant::ColorGroup; + return TQVariant::ColorGroup; if ( s == "IconSet" ) - return (QVariant::Type)TQVariant::IconSet; + return TQVariant::IconSet; if ( s == "Point" ) return TQVariant::Point; if ( s == "Image" ) @@ -2998,9 +2998,9 @@ static TQVariant::Type type_to_variant( const TQString &s ) if ( s == "Double" ) return TQVariant::Double; if ( s == "CString" ) - return (QVariant::Type)TQVariant::CString; + return TQVariant::CString; if ( s == "PointArray" ) - return (QVariant::Type)TQVariant::PointArray; + return TQVariant::PointArray; if ( s == "Region" ) return TQVariant::Region; if ( s == "Bitmap" ) |