summaryrefslogtreecommitdiffstats
path: root/lib/store
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commit7c71ab86d1f7e387fc3df63b48df07231f111862 (patch)
tree30ba2d2f840ff5fd458b6113e9c3f2e8a71d510d /lib/store
parentafbfdc507bfaafc8824a9808311d57a9ece87510 (diff)
downloadkoffice-7c71ab86d1f7e387fc3df63b48df07231f111862.tar.gz
koffice-7c71ab86d1f7e387fc3df63b48df07231f111862.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'lib/store')
-rw-r--r--lib/store/KoXmlWriter.cpp4
-rw-r--r--lib/store/fix_storage.pl8
2 files changed, 6 insertions, 6 deletions
diff --git a/lib/store/KoXmlWriter.cpp b/lib/store/KoXmlWriter.cpp
index 6b2bf039..4260f76f 100644
--- a/lib/store/KoXmlWriter.cpp
+++ b/lib/store/KoXmlWriter.cpp
@@ -105,9 +105,9 @@ void KoXmlWriter::startElement( const char* tagName, bool indentInside )
Q_ASSERT( tagName != 0 );
// Tell tqparent that it has tqchildren
- bool tqparentIndent = prepareForChild();
+ bool parentIndent = prepareForChild();
- m_tags.push( Tag( tagName, tqparentIndent && indentInside ) );
+ m_tags.push( Tag( tagName, parentIndent && indentInside ) );
writeChar( '<' );
writeCString( tagName );
//kdDebug() << k_funcinfo << tagName << endl;
diff --git a/lib/store/fix_storage.pl b/lib/store/fix_storage.pl
index ba605616..8b13a397 100644
--- a/lib/store/fix_storage.pl
+++ b/lib/store/fix_storage.pl
@@ -62,9 +62,9 @@ sub dumpTree {
# Finds the files where we have to fix part references (->maindoc.xml)
sub findCandidates {
- my($dref, $currentdir, $tqparentdir) = @_;
+ my($dref, $currentdir, $parentdir) = @_;
my @dir = @{$dref};
- #print "current: $currentdir, tqparentdir: $tqparentdir\n";
+ #print "current: $currentdir, parentdir: $parentdir\n";
foreach(@dir) {
if(ref($_) eq 'ARRAY') {
#print $_->[0], " (", $_->[1], ")\n";
@@ -72,8 +72,8 @@ sub findCandidates {
}
else {
if($_ =~ m/maindoc\.xml/) {
- my $source = $tqparentdir . '/' . $currentdir . "/maindoc.xml";
- my $dest = $tqparentdir . '/' . $currentdir . ".xml";
+ my $source = $parentdir . '/' . $currentdir . "/maindoc.xml";
+ my $dest = $parentdir . '/' . $currentdir . ".xml";
push(@needFixing, [ $source, $dest ]);
}
}