From c8c5e11f05f023849896d09cf06917e9a2c016ca Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 5 Nov 2023 11:54:26 +0900 Subject: Replace Qt with TQt Signed-off-by: Michele Calgaro (cherry picked from commit ef06f14f2475bd08d3ea2ceec54a7b2238f3554e) --- kivio/kiviopart/kiviosdk/kivio_fill_style.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kivio/kiviopart/kiviosdk/kivio_fill_style.h') diff --git a/kivio/kiviopart/kiviosdk/kivio_fill_style.h b/kivio/kiviopart/kiviosdk/kivio_fill_style.h index 4be7303b..9a362077 100644 --- a/kivio/kiviopart/kiviosdk/kivio_fill_style.h +++ b/kivio/kiviopart/kiviosdk/kivio_fill_style.h @@ -45,7 +45,7 @@ protected: KivioColorStyle m_colorStyle; // The color style to use when filling TQColor m_color; // The color to use when solid filling TQColor m_color2; // The second color to use when using a gradient - Qt::BrushStyle m_brushStyle; // The brush pattern to use when solid filling (maybe gradient too?) + TQt::BrushStyle m_brushStyle; // The brush pattern to use when solid filling (maybe gradient too?) KImageEffect::GradientType m_gradientType; //Which type of gradient to use public: @@ -68,8 +68,8 @@ public: inline TQColor color2() const { return m_color2; } inline void setColor2( const TQColor& c ) { m_color2 = c; } - inline Qt::BrushStyle brushStyle() const { return m_brushStyle; } - inline void setBrushStyle( Qt::BrushStyle b ) { m_brushStyle = b; } + inline TQt::BrushStyle brushStyle() const { return m_brushStyle; } + inline void setBrushStyle( TQt::BrushStyle b ) { m_brushStyle = b; } inline KImageEffect::GradientType gradientType() const { return m_gradientType; } inline void setGradientType(KImageEffect::GradientType t) { m_gradientType = t; } -- cgit v1.2.1