summaryrefslogtreecommitdiffstats
path: root/styles/phase
diff options
context:
space:
mode:
Diffstat (limited to 'styles/phase')
-rw-r--r--styles/phase/phasestyle.cpp8
-rw-r--r--styles/phase/phasestyle.h4
2 files changed, 6 insertions, 6 deletions
diff --git a/styles/phase/phasestyle.cpp b/styles/phase/phasestyle.cpp
index 0e713362..6e75e953 100644
--- a/styles/phase/phasestyle.cpp
+++ b/styles/phase/phasestyle.cpp
@@ -576,7 +576,7 @@ void PhaseStyle::drawPhaseTab(TQPainter *painter,
// ---------------
// Draw the primitive element
-void PhaseStyle::drawPrimitive(TQ_PrimitiveElement element,
+void PhaseStyle::drawPrimitive(PrimitiveElement element,
TQPainter *painter,
const TQStyleControlElementData &ceData,
ControlElementFlags elementFlags,
@@ -696,7 +696,7 @@ void PhaseStyle::drawPrimitive(TQ_PrimitiveElement element,
drawPhaseBevel(painter, x, y, w, h,
group, group.button(), down, !horiz, true);
- TQ_PrimitiveElement arrow = ((horiz) ?
+ PrimitiveElement arrow = ((horiz) ?
((element == PE_ScrollBarAddLine) ?
PE_ArrowRight : PE_ArrowLeft) :
((element == PE_ScrollBarAddLine) ?
@@ -1492,7 +1492,7 @@ void PhaseStyle::drawControl(TQ_ControlElement element,
}
if (mi->popup()) { // draw submenu arrow
- TQ_PrimitiveElement arrow = reverse_ ? PE_ArrowLeft : PE_ArrowRight;
+ PrimitiveElement arrow = reverse_ ? PE_ArrowLeft : PE_ArrowRight;
int dim = (h-2*ITEMFRAME) / 2;
vrect = visualRect(TQRect(x + w - ARROWMARGIN - ITEMFRAME - dim,
y + h / 2 - dim / 2, dim, dim), rect);
@@ -1784,7 +1784,7 @@ void PhaseStyle::drawComplexControl(TQ_ComplexControl control,
return;
}
- TQ_PrimitiveElement element;
+ PrimitiveElement element;
// draw frame
if (controls & SC_SpinWidgetFrame) {
diff --git a/styles/phase/phasestyle.h b/styles/phase/phasestyle.h
index 0fb51f19..6c620250 100644
--- a/styles/phase/phasestyle.h
+++ b/styles/phase/phasestyle.h
@@ -67,7 +67,7 @@ class PhaseStyle : public TDEStyle
void polish(TQPalette &pal);
void unPolish(const TQStyleControlElementData &ceData, ControlElementFlags elementFlags, void *);
- void drawPrimitive(TQ_PrimitiveElement element,
+ void drawPrimitive(PrimitiveElement element,
TQPainter *painter,
const TQStyleControlElementData &ceData,
ControlElementFlags elementFlags,
@@ -143,7 +143,7 @@ class PhaseStyle : public TDEStyle
const TQStyleOption& option = TQStyleOption::Default,
const TQWidget *widget = 0) const;
- int styleHint(TQ_StyleHint, const TQStyleControlElementData &ceData, ControlElementFlags elementFlags,
+ int styleHint(StyleHint, const TQStyleControlElementData &ceData, ControlElementFlags elementFlags,
const TQStyleOption & = TQStyleOption::Default,
TQStyleHintReturn * = 0, const TQWidget * = 0 ) const;