summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/propertyeditor.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-21 16:28:25 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-23 19:35:04 +0200
commit9dec9695384cac6b0595ad9d8f16bcc71dd978d2 (patch)
treebcc6675bbeff029a85130e978b974484e8b87ecc /kdevdesigner/designer/propertyeditor.cpp
parent4adc1433d2c80be42dfd7e054475c81b419009d4 (diff)
downloadtdevelop-9dec9695384cac6b0595ad9d8f16bcc71dd978d2.tar.gz
tdevelop-9dec9695384cac6b0595ad9d8f16bcc71dd978d2.zip
Fix FTBFS
(cherry picked from commit c6fee889e9a4a644560804c7226c5fd6eb475e48)
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" )