summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/propertyeditor.cpp
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/propertyeditor.cpp
parent40e804a0088586459e5b89356c54448525945470 (diff)
downloadtdevelop-c6fee889e9a4a644560804c7226c5fd6eb475e48.tar.gz
tdevelop-c6fee889e9a4a644560804c7226c5fd6eb475e48.zip
Fix FTBFS
Diffstat (limited to 'kdevdesigner/designer/propertyeditor.cpp')
-rw-r--r--kdevdesigner/designer/propertyeditor.cpp8
1 files changed, 4 insertions, 4 deletions
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" )