diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | 33e6166f7e62c479bad5d46ad240ea9704f848fd (patch) | |
tree | bc5e8185ff98d6a605247158ca6a5b924dccd67a /k9author/k9menueditor.cpp | |
parent | 68db2ce8a8c330a47485477eb3cee9e7036f6071 (diff) | |
download | k9copy-33e6166f7e62c479bad5d46ad240ea9704f848fd.tar.gz k9copy-33e6166f7e62c479bad5d46ad240ea9704f848fd.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k9copy@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'k9author/k9menueditor.cpp')
-rw-r--r-- | k9author/k9menueditor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/k9author/k9menueditor.cpp b/k9author/k9menueditor.cpp index fa227d0..f0ea2b3 100644 --- a/k9author/k9menueditor.cpp +++ b/k9author/k9menueditor.cpp @@ -92,7 +92,7 @@ void k9MenuEditor::clearSelection() { bool k9MenuEditor::isSelected(TQCanvasItem *_item) { k9CanvasSprite *s=(k9CanvasSprite *)_item; k9MenuButton *button=s->getButton(); - if (m_selection.tqfind(button) !=-1) + if (m_selection.find(button) !=-1) return true; else return false; @@ -101,7 +101,7 @@ bool k9MenuEditor::isSelected(TQCanvasItem *_item) { void k9MenuEditor::addSelection(TQCanvasItem *_item) { k9CanvasSprite *s=(k9CanvasSprite *)_item; k9MenuButton *button=s->getButton(); - if (m_selection.tqfind(button) !=-1) { + if (m_selection.find(button) !=-1) { button->select(false); m_selection.remove(button); } else { |