refactoring

This commit is contained in:
fourtf
2017-04-12 17:46:44 +02:00
parent 8ef492d7ae
commit 96db82e867
114 changed files with 5554 additions and 3703 deletions
+6 -7
View File
@@ -18,10 +18,9 @@ class ChatWidgetHeaderButton : public QWidget
public:
explicit ChatWidgetHeaderButton(int spacing = 6);
SignalLabel &
getLabel()
SignalLabel &getLabel()
{
return label;
return _label;
}
signals:
@@ -37,11 +36,11 @@ protected:
void mouseReleaseEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
private:
QHBoxLayout hbox;
SignalLabel label;
QHBoxLayout _hbox;
SignalLabel _label;
bool mouseOver;
bool mouseDown;
bool _mouseOver;
bool _mouseDown;
void labelMouseUp();
void labelMouseDown();