diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 11:54:26 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-16 23:40:13 +0900 |
| commit | c8c5e11f05f023849896d09cf06917e9a2c016ca (patch) | |
| tree | a62f00b0249b967528e115e2123b56d40633c17a /chalk/plugins/filters | |
| parent | c9973bfbf1091ef91f30b5ab456015676123aa47 (diff) | |
| download | koffice-c8c5e11f.tar.gz koffice-c8c5e11f.zip | |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit ef06f14f2475bd08d3ea2ceec54a7b2238f3554e)
Diffstat (limited to 'chalk/plugins/filters')
| -rw-r--r-- | chalk/plugins/filters/convolutionfilters/convolutionfilters.cpp | 2 | ||||
| -rw-r--r-- | chalk/plugins/filters/levelfilter/kgradientslider.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/chalk/plugins/filters/convolutionfilters/convolutionfilters.cpp b/chalk/plugins/filters/convolutionfilters/convolutionfilters.cpp index 8f1085654..89a20500a 100644 --- a/chalk/plugins/filters/convolutionfilters/convolutionfilters.cpp +++ b/chalk/plugins/filters/convolutionfilters/convolutionfilters.cpp @@ -121,7 +121,7 @@ KisEmbossInAllDirectionsFilter::KisEmbossInAllDirectionsFilter() } KisEmbossHorizontalVerticalFilter::KisEmbossHorizontalVerticalFilter() - : KisConvolutionConstFilter(id(), "emboss", i18n("Emboss Horizontal &&Qt::Vertical")) + : KisConvolutionConstFilter(id(), "emboss", i18n("Emboss Horizontal && Vertical")) { m_matrix = createKernel( 0, -1, 0 , -1, 4, -1 , 0, -1, 0, 1, 127); m_channelFlags = KisChannelInfo::FLAG_COLOR; diff --git a/chalk/plugins/filters/levelfilter/kgradientslider.cpp b/chalk/plugins/filters/levelfilter/kgradientslider.cpp index ca5725bd5..de5dd76d3 100644 --- a/chalk/plugins/filters/levelfilter/kgradientslider.cpp +++ b/chalk/plugins/filters/levelfilter/kgradientslider.cpp @@ -131,7 +131,7 @@ void KGradientSlider::mousePressEvent ( TQMouseEvent * e ) eCursor closest_cursor; int distance; - if (e->button() != Qt::LeftButton) + if (e->button() != TQt::LeftButton) return; unsigned int x = e->pos().x(); @@ -208,7 +208,7 @@ void KGradientSlider::mousePressEvent ( TQMouseEvent * e ) void KGradientSlider::mouseReleaseEvent ( TQMouseEvent * e ) { - if (e->button() != Qt::LeftButton) + if (e->button() != TQt::LeftButton) return; m_dragging = false; |
