move #endif directive again

This commit is contained in:
FarmRadio Hangar 2016-05-13 17:35:04 +03:00
parent 1b79a94f26
commit 62dc4ada9f
2 changed files with 4 additions and 4 deletions

View File

@ -38,8 +38,6 @@ public:
int trackWidth;
};
#endif // SLIDER_P_H
SliderPrivate::SliderPrivate(Slider *parent)
: q_ptr(parent),
thumb(new SliderThumb(parent)),
@ -129,3 +127,5 @@ void SliderPrivate::setHovered(bool status)
q->update();
}
}
#endif // SLIDER_P_H

View File

@ -18,8 +18,6 @@ public:
QHash<QString, QColor> colors;
};
#endif // THEME_P_H
ThemePrivate::ThemePrivate(Theme *parent)
: q_ptr(parent)
{
@ -31,3 +29,5 @@ QColor ThemePrivate::rgba(int r, int g, int b, qreal a) const
color.setAlphaF(a);
return color;
}
#endif // THEME_P_H