diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:56:05 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:56:05 -0600 |
commit | 74c05bbf9d92e43a6cf3799355b5f3598884409e (patch) | |
tree | 9371e52e1564e08fd280f28e49981ffeb881b9d2 /kolourpaint/kpdocument.cpp | |
parent | 45f529de247fc4b3662f6b474abe03fe904306ec (diff) | |
download | tdegraphics-74c05bbf9d92e43a6cf3799355b5f3598884409e.tar.gz tdegraphics-74c05bbf9d92e43a6cf3799355b5f3598884409e.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'kolourpaint/kpdocument.cpp')
-rw-r--r-- | kolourpaint/kpdocument.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kolourpaint/kpdocument.cpp b/kolourpaint/kpdocument.cpp index c5a1c442..d427b598 100644 --- a/kolourpaint/kpdocument.cpp +++ b/kolourpaint/kpdocument.cpp @@ -1109,22 +1109,22 @@ void kpDocument::setSelection (const kpSelection &selection) (selection.type () == kpSelection::Text)); // We don't change the Selection Tool if the new selection's - // tqshape is merely different to the current tool's (e.g. rectangular + // shape is merely different to the current tool's (e.g. rectangular // vs elliptical) because: // // 1. All image selection tools support editing selections of all the - // different tqshapes anyway. + // different shapes anyway. // 2. Suppose the user is trying out different drags of selection borders - // and then decides to paste a differently tqshaped selection before continuing + // and then decides to paste a differently shaped selection before continuing // to try out different borders. If the pasting were to switch to - // a differently tqshaped tool, the borders drawn after the paste would - // be using a new tqshape rather than the tqshape before the paste. This + // a differently shaped tool, the borders drawn after the paste would + // be using a new shape rather than the shape before the paste. This // could get irritating so we don't do the switch. // if (m_mainWindow && (!m_mainWindow->toolIsASelectionTool () || isTextChanged)) { - // Switch to the appropriately tqshaped selection tool + // Switch to the appropriately shaped selection tool // _before_ we change the selection // (all selection tool's ::end() functions nuke the current selection) switch (selection.type ()) |