summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--style/qtcurve.cpp6
-rw-r--r--style/qtcurve.h4
2 files changed, 5 insertions, 5 deletions
diff --git a/style/qtcurve.cpp b/style/qtcurve.cpp
index f084621..0cb0a66 100644
--- a/style/qtcurve.cpp
+++ b/style/qtcurve.cpp
@@ -798,7 +798,7 @@ static bool isCheckBoxOfGroupBox(const TQObject *w)
!qstrcmp(w->name(), "qt_groupbox_checkbox");
}
-static void drawArrow(TQPainter *p, const TQRect &r, const TQColor &col, TQStyle::TQ_PrimitiveElement pe, const Options &opts, bool small=false)
+static void drawArrow(TQPainter *p, const TQRect &r, const TQColor &col, TQStyle::PrimitiveElement pe, const Options &opts, bool small=false)
{
TQPointArray a;
@@ -3253,7 +3253,7 @@ void QtCurveStyle::drawEntryField(TQPainter *p, const TQRect &rx, const TQColorG
}
void QtCurveStyle::drawArrow(TQPainter *p, const TQRect &r, const TQColorGroup &cg, SFlags flags,
- TQ_PrimitiveElement pe, bool small, bool checkActive) const
+ PrimitiveElement pe, bool small, bool checkActive) const
{
const TQColor &col(flags&Style_Enabled
? checkActive && flags&Style_Active
@@ -3264,7 +3264,7 @@ void QtCurveStyle::drawArrow(TQPainter *p, const TQRect &r, const TQColorGroup &
::drawArrow(p, r, p->pen().style()==TQPen::NoPen ? col : TQColor(p->pen().color()), pe, opts, small);
}
-void QtCurveStyle::drawPrimitive(TQ_PrimitiveElement pe, TQPainter *p, const TQStyleControlElementData &ceData, ControlElementFlags elementFlags, const TQRect &r,
+void QtCurveStyle::drawPrimitive(PrimitiveElement pe, TQPainter *p, const TQStyleControlElementData &ceData, ControlElementFlags elementFlags, const TQRect &r,
const TQColorGroup &cg, SFlags flags, const TQStyleOption &data) const
{
switch(pe)
diff --git a/style/qtcurve.h b/style/qtcurve.h
index 154e83b..cdf43fc 100644
--- a/style/qtcurve.h
+++ b/style/qtcurve.h
@@ -163,8 +163,8 @@ class QtCurveStyle : public BASE_STYLE
void drawEntryField(TQPainter *p, const TQRect &r, const TQColorGroup &cg, SFlags flags,
EntryColor coloration, int round, EWidget=WIDGET_ENTRY) const;
void drawArrow(TQPainter *p, const TQRect &r, const TQColorGroup &cg, SFlags flags,
- TQ_PrimitiveElement pe, bool small=false, bool checkActive=false) const;
- void drawPrimitive(TQ_PrimitiveElement, TQPainter *, const TQStyleControlElementData &ceData, ControlElementFlags elementFlags, const TQRect &, const TQColorGroup &,
+ PrimitiveElement pe, bool small=false, bool checkActive=false) const;
+ void drawPrimitive(PrimitiveElement, TQPainter *, const TQStyleControlElementData &ceData, ControlElementFlags elementFlags, const TQRect &, const TQColorGroup &,
SFlags = Style_Default, const TQStyleOption & = TQStyleOption::Default) const;
void drawTDEStylePrimitive(TDEStylePrimitive kpe, TQPainter* p, const TQStyleControlElementData &ceData, ControlElementFlags elementFlags, const TQRect &r,
const TQColorGroup &cg, SFlags flags, const TQStyleOption &opt, const TQWidget* widget = 0 ) const;