summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-21 16:28:25 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-21 16:28:25 -0600
commitc6fee889e9a4a644560804c7226c5fd6eb475e48 (patch)
tree1f8bf93dca4228546c4650acd2fc258a9d9fed8c /kdevdesigner/designer
parent40e804a0088586459e5b89356c54448525945470 (diff)
downloadtdevelop-c6fee889e9a4a644560804c7226c5fd6eb475e48.tar.gz
tdevelop-c6fee889e9a4a644560804c7226c5fd6eb475e48.zip
Fix FTBFS
Diffstat (limited to 'kdevdesigner/designer')
-rw-r--r--kdevdesigner/designer/actioneditorimpl.h2
-rw-r--r--kdevdesigner/designer/outputwindow.cpp2
-rw-r--r--kdevdesigner/designer/propertyeditor.cpp8
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" )