diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-07 21:14:06 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-07 21:14:06 +0000 |
commit | a40b0e89b6b20ba9039d3f79e73afbeac6954ccb (patch) | |
tree | 07779032ca48d6e8e71887a329141f8e635c901c /quanta | |
parent | a2bae01d006ea8053e85bc16d09a8cf40a4b0b75 (diff) | |
download | tdewebdev-a40b0e89b6b20ba9039d3f79e73afbeac6954ccb.tar.gz tdewebdev-a40b0e89b6b20ba9039d3f79e73afbeac6954ccb.zip |
Rename incorrect instances of tqrepaint[...] to repaint[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'quanta')
-rw-r--r-- | quanta/project/projectupload.cpp | 2 | ||||
-rw-r--r-- | quanta/src/document.cpp | 4 | ||||
-rw-r--r-- | quanta/src/document.h | 4 | ||||
-rw-r--r-- | quanta/src/quanta.h | 2 | ||||
-rw-r--r-- | quanta/treeviews/basetreeview.h | 2 | ||||
-rw-r--r-- | quanta/treeviews/servertreeview.h | 2 |
6 files changed, 8 insertions, 8 deletions
diff --git a/quanta/project/projectupload.cpp b/quanta/project/projectupload.cpp index dd88ab5c..5502198f 100644 --- a/quanta/project/projectupload.cpp +++ b/quanta/project/projectupload.cpp @@ -235,7 +235,7 @@ void ProjectUpload::slotBuildTree() totalText->setText(i18n("Total:")); totalProgress->setTotalSteps(1); totalProgress->setValue(0); - //hack to force tqrepainting of the treeview + //hack to force repainting of the treeview resize(width() + 1, height()); resize(width() - 1, height()); if (m_quickUpload) diff --git a/quanta/src/document.cpp b/quanta/src/document.cpp index 7c2ff3f1..c0dc3816 100644 --- a/quanta/src/document.cpp +++ b/quanta/src/document.cpp @@ -193,7 +193,7 @@ Document::Document(KTextEditor::Document *doc, m_tempFileName = TQString(); dtdName = Project::ref()->defaultDTD(); reparseEnabled = true; - tqrepaintEnabled = true; + repaintEnabled = true; delayedTextChangedEnabled = true; docUndoRedo = new undoRedo(this); @@ -2632,7 +2632,7 @@ TQStringList Document::tagAreas(const TQString& tag, bool includeCoordinates, bo void Document::activateRepaintView(bool activation) { - tqrepaintEnabled = activation; + repaintEnabled = activation; m_view->setUpdatesEnabled(activation); } diff --git a/quanta/src/document.h b/quanta/src/document.h index 975b9f31..639ff27d 100644 --- a/quanta/src/document.h +++ b/quanta/src/document.h @@ -172,7 +172,7 @@ work correctly. */ /** disable/enable the tqrepaint of the Kate view */ void activateRepaintView(bool activation); - bool RepaintViewActivated() {return tqrepaintEnabled;} + bool RepaintViewActivated() {return repaintEnabled;} void setErrorMark(int line); void clearErrorMarks(); @@ -307,7 +307,7 @@ private: bool argHintVisible; bool hintRequested; bool reparseEnabled; - bool tqrepaintEnabled; + bool repaintEnabled; bool delayedTextChangedEnabled; /** True if the document is dirty (has been modified outside). */ bool m_dirty; diff --git a/quanta/src/quanta.h b/quanta/src/quanta.h index 404a9329..811fa60c 100644 --- a/quanta/src/quanta.h +++ b/quanta/src/quanta.h @@ -290,7 +290,7 @@ public slots: void slotRepaintPreview(); /** toggles showing the preview */ void slotToggleShowPreview(); - /** Shows the preview widget and tqrepaints the preview or + /** Shows the preview widget and repaints the preview or hides the preview widget and restores the original document */ void slotShowPreviewWidget(bool show); diff --git a/quanta/treeviews/basetreeview.h b/quanta/treeviews/basetreeview.h index 36c2d7fe..47dc5158 100644 --- a/quanta/treeviews/basetreeview.h +++ b/quanta/treeviews/basetreeview.h @@ -173,7 +173,7 @@ public slots: */ void slotNewProjectLoaded(const TQString &, const KURL &, const KURL &); /** - tqrepaints all treeview items + repaints all treeview items */ void slotDocumentClosed(const KURL& url); diff --git a/quanta/treeviews/servertreeview.h b/quanta/treeviews/servertreeview.h index 294bb23a..af5c0afa 100644 --- a/quanta/treeviews/servertreeview.h +++ b/quanta/treeviews/servertreeview.h @@ -69,7 +69,7 @@ protected slots: void slotMenu(KListView *listView, TQListViewItem *item, const TQPoint &point); - /** tqrepaints the treeview items, because they might be added to or removed from the project*/ + /** repaints the treeview items, because they might be added to or removed from the project*/ void slotReloadTree( ProjectList *fileList, bool buildNewTree, const TQStringList &folderToOpen); protected: |