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 | b6edfe41c9395f2e20784cbf0e630af6426950a3 (patch) | |
| tree | 56ed9b871d4296e6c15949c24e16420be1b28697 /chalk/plugins/tools/defaulttools | |
| parent | ef39e8e4178a8f98cf5f154916ba0f03e4855206 (diff) | |
| download | koffice-b6edfe41c9395f2e20784cbf0e630af6426950a3.tar.gz koffice-b6edfe41c9395f2e20784cbf0e630af6426950a3.zip | |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'chalk/plugins/tools/defaulttools')
| -rw-r--r-- | chalk/plugins/tools/defaulttools/kis_tool_colorpicker.cc | 2 | ||||
| -rw-r--r-- | chalk/plugins/tools/defaulttools/kis_tool_fill.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chalk/plugins/tools/defaulttools/kis_tool_colorpicker.cc b/chalk/plugins/tools/defaulttools/kis_tool_colorpicker.cc index 32dbcf9d2..b238e746d 100644 --- a/chalk/plugins/tools/defaulttools/kis_tool_colorpicker.cc +++ b/chalk/plugins/tools/defaulttools/kis_tool_colorpicker.cc @@ -104,7 +104,7 @@ void KisToolColorPicker::buttonPress(KisButtonPressEvent *e) TQPoint pos = TQPoint(e->pos().floorX(), e->pos().floorY()); - if (!img->bounds().tqcontains(pos)) { + if (!img->bounds().contains(pos)) { return; } diff --git a/chalk/plugins/tools/defaulttools/kis_tool_fill.cc b/chalk/plugins/tools/defaulttools/kis_tool_fill.cc index 1e2b82c5f..5a919771d 100644 --- a/chalk/plugins/tools/defaulttools/kis_tool_fill.cc +++ b/chalk/plugins/tools/defaulttools/kis_tool_fill.cc @@ -151,7 +151,7 @@ void KisToolFill::buttonRelease(KisButtonReleaseEvent *e) int x, y; x = m_startPos.floorX(); y = m_startPos.floorY(); - if (!m_currentImage->bounds().tqcontains(x, y)) { + if (!m_currentImage->bounds().contains(x, y)) { return; } flood(x, y); |
