diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 04:18:52 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 04:18:52 +0000 |
commit | 648ba4a456d3aad2825193ff8f3bd52a875783b5 (patch) | |
tree | 0b50d2253a0c85238cc4dcba5c4f949de3f0eb15 /kig/filters/kseg-filter.cc | |
parent | 98a12d05a48814bec3870b9a6d5865475cfa1c95 (diff) | |
download | tdeedu-648ba4a456d3aad2825193ff8f3bd52a875783b5.tar.gz tdeedu-648ba4a456d3aad2825193ff8f3bd52a875783b5.zip |
Revert automated changes
Sorry guys, they are just not ready for prime time
Work will continue as always
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1212481 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kig/filters/kseg-filter.cc')
-rw-r--r-- | kig/filters/kseg-filter.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kig/filters/kseg-filter.cc b/kig/filters/kseg-filter.cc index 5ad746b7..fb96c25c 100644 --- a/kig/filters/kseg-filter.cc +++ b/kig/filters/kseg-filter.cc @@ -67,7 +67,7 @@ bool KigFilterKSeg::supportMime( const TQString& mime ) struct drawstyle { - TQ_INT8 pointstyle; + Q_INT8 pointstyle; TQFont font; TQPen pen; TQBrush brush; @@ -556,19 +556,19 @@ KigDocument* KigFilterKSeg::load( const TQString& file ) }; case G_CIRCLEINTERIOR: { - notSupported( file, i18n( "This KSeg file tqcontains a filled circle, " + notSupported( file, i18n( "This KSeg file contains a filled circle, " "which Kig does not currently support." ) ); return false; }; case G_ARCSECTOR: { - notSupported( file, i18n( "This KSeg file tqcontains an arc sector, " + notSupported( file, i18n( "This KSeg file contains an arc sector, " "which Kig does not currently support." ) ); return false; }; case G_ARCSEGMENT: { - notSupported( file, i18n( "This KSeg file tqcontains an arc segment, " + notSupported( file, i18n( "This KSeg file contains an arc segment, " "which Kig does not currently support." ) ); return false; }; @@ -636,7 +636,7 @@ KigDocument* KigFilterKSeg::load( const TQString& file ) std::vector<ObjectCalcer*> args2; args2.push_back( object->nameCalcer() ); ObjectCalcer* oc2 = fact->attachedLabelCalcer( - TQString::tqfromLatin1( "%1" ), object->calcer(), + TQString::fromLatin1( "%1" ), object->calcer(), static_cast<const PointImp*>( object->imp() )->coordinate(), false, args2, *retdoc ); oc2->calc( *retdoc ); |