diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 04766b207afba7961d4d802313e426f5a2fbef63 (patch) | |
tree | c888ea1027c793e2d0386a7e5a1a0cd077b03cb3 /filters/karbon/xcf | |
parent | b6edfe41c9395f2e20784cbf0e630af6426950a3 (diff) | |
download | koffice-04766b207afba7961d4d802313e426f5a2fbef63.tar.gz koffice-04766b207afba7961d4d802313e426f5a2fbef63.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'filters/karbon/xcf')
-rw-r--r-- | filters/karbon/xcf/xcfexport.cc | 8 | ||||
-rw-r--r-- | filters/karbon/xcf/xcfexport.h | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/filters/karbon/xcf/xcfexport.cc b/filters/karbon/xcf/xcfexport.cc index d5a0c71b..3e9237fb 100644 --- a/filters/karbon/xcf/xcfexport.cc +++ b/filters/karbon/xcf/xcfexport.cc @@ -223,21 +223,21 @@ XcfExport::visitVLayer( VLayer& layer ) // False. *m_stream << static_cast<TQ_UINT32>( 0 ); - // Apply tqmask? + // Apply mask? *m_stream << static_cast<TQ_UINT32>( 11 ); // Property size in bytes. *m_stream << static_cast<TQ_UINT32>( 4 ); // False. *m_stream << static_cast<TQ_UINT32>( 0 ); - // Edit tqmask? + // Edit mask? *m_stream << static_cast<TQ_UINT32>( 12 ); // Property size in bytes. *m_stream << static_cast<TQ_UINT32>( 4 ); // False. *m_stream << static_cast<TQ_UINT32>( 0 ); - // Show tqmask? + // Show mask? *m_stream << static_cast<TQ_UINT32>( 13 ); // Property size in bytes. *m_stream << static_cast<TQ_UINT32>( 4 ); @@ -302,7 +302,7 @@ XcfExport::visitVLayer( VLayer& layer ) *m_stream << start; - // Append a zero offset to indicate end of layer tqmask offsets. + // Append a zero offset to indicate end of layer mask offsets. *m_stream << static_cast<TQ_UINT32>( 0 ); } diff --git a/filters/karbon/xcf/xcfexport.h b/filters/karbon/xcf/xcfexport.h index 0c60dd4e..82d86883 100644 --- a/filters/karbon/xcf/xcfexport.h +++ b/filters/karbon/xcf/xcfexport.h @@ -37,7 +37,7 @@ class XcfExport : public KoFilter, private VVisitor TQ_OBJECT public: - XcfExport( KoFilter* tqparent, const char* name, const TQStringList& ); + XcfExport( KoFilter* parent, const char* name, const TQStringList& ); virtual ~XcfExport() {} virtual KoFilter::ConversiontqStatus convert( const TQCString& from, const TQCString& to ); |