juicy compiler error

This commit is contained in:
fourtf
2017-01-11 18:52:09 +01:00
parent 580a411e9d
commit 854566b57f
63 changed files with 1481 additions and 1067 deletions
+17 -13
View File
@@ -6,32 +6,36 @@
class ScrollBarHighlight
{
public:
enum Style {
Default,
Left,
Right,
SingleLine
};
enum Style { Default, Left, Right, SingleLine };
ScrollBarHighlight(float position, int colorIndex, Style style = Default, QString tag = "");
ScrollBarHighlight(float position, int colorIndex, Style style = Default,
QString tag = "");
Style style() {
Style
style()
{
return m_style;
}
float position() {
float
position()
{
return m_position;
}
int colorIndex() {
int
colorIndex()
{
return m_colorIndex;
}
QString getTag() {
QString
getTag()
{
return m_tag;
}
ScrollBarHighlight* next;
ScrollBarHighlight *next;
private:
Style m_style;
@@ -40,4 +44,4 @@ private:
QString m_tag;
};
#endif // SCROLLBARHIGHLIGHT_H
#endif // SCROLLBARHIGHLIGHT_H