move #endif directive in private header files
This commit is contained in:
parent
58f157db4b
commit
d0959864e7
|
@ -38,6 +38,8 @@ public:
|
|||
int trackWidth;
|
||||
};
|
||||
|
||||
#endif // SLIDER_P_H
|
||||
|
||||
SliderPrivate::SliderPrivate(Slider *parent)
|
||||
: q_ptr(parent),
|
||||
thumb(new SliderThumb(parent)),
|
||||
|
@ -127,5 +129,3 @@ void SliderPrivate::setHovered(bool status)
|
|||
q->update();
|
||||
}
|
||||
}
|
||||
|
||||
#endif // SLIDER_P_H
|
||||
|
|
|
@ -18,6 +18,8 @@ public:
|
|||
QHash<QString, QColor> colors;
|
||||
};
|
||||
|
||||
#endif // THEME_P_H
|
||||
|
||||
ThemePrivate::ThemePrivate(Theme *parent)
|
||||
: q_ptr(parent)
|
||||
{
|
||||
|
@ -29,5 +31,3 @@ QColor ThemePrivate::rgba(int r, int g, int b, qreal a) const
|
|||
color.setAlphaF(a);
|
||||
return color;
|
||||
}
|
||||
|
||||
#endif // THEME_P_H
|
||||
|
|
Loading…
Reference in New Issue