diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
commit | f24ac211b8e67f545e757a50da4a00252d092869 (patch) | |
tree | 113a9b3b91d929b658082587b6e10f647570f775 /src/formatimporter.cpp | |
parent | 2ebe91d378b798914b9fd5e741f81bac4ab3ef08 (diff) | |
download | basket-f24ac211b8e67f545e757a50da4a00252d092869.tar.gz basket-f24ac211b8e67f545e757a50da4a00252d092869.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/basket@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/formatimporter.cpp')
-rw-r--r-- | src/formatimporter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/formatimporter.cpp b/src/formatimporter.cpp index 1d203ca..672695c 100644 --- a/src/formatimporter.cpp +++ b/src/formatimporter.cpp @@ -219,14 +219,14 @@ TQDomElement FormatImporter::importBasket(const TQString &folderName) XMLWork::addElement(*document, e, "tags", (isChecked ? "todo_done" : "todo_unchecked")); } // Import annotations as folded groups: - TQDomElement tqparentE = column; + TQDomElement parentE = column; TQString annotations = XMLWork::getElementText(e, "annotations", ""); if (!annotations.isEmpty()) { TQDomElement annotGroup = document->createElement("group"); column.insertBefore(annotGroup, e); annotGroup.setAttribute("folded", "true"); annotGroup.appendChild(e); - tqparentE = annotGroup; + parentE = annotGroup; // Create the text note and add it to the DOM tree: TQDomElement annotNote = document->createElement("note"); annotNote.setAttribute("type", "text"); @@ -271,7 +271,7 @@ TQDomElement FormatImporter::importBasket(const TQString &folderName) } // Add the element to the DOM: TQDomElement launcherElem = document->createElement("note"); - tqparentE.insertBefore(launcherElem, e); + parentE.insertBefore(launcherElem, e); launcherElem.setAttribute("type", "launcher"); XMLWork::addElement(*document, launcherElem, "content", launcherFileName); } |