Auto status change to "Under Review"
@@ -10,7 +10,7 class MacScrollBarStyle : public QProxyStyle { | |||
|
10 | 10 | |
|
11 | 11 | public: |
|
12 | 12 | int styleHint(StyleHint hint, const QStyleOption *option, const QWidget *widget, |
|
13 | QStyleHintReturn *returnData) const; | |
|
13 | QStyleHintReturn *returnData) const override; | |
|
14 | 14 | |
|
15 | 15 | void selfInstallOn(QWidget *widget, bool installOnSubWidgets); |
|
16 | 16 | }; |
@@ -94,7 +94,7 void TimeWidget::dragEnterEvent(QDragEnterEvent *event) | |||
|
94 | 94 | |
|
95 | 95 | void TimeWidget::dragLeaveEvent(QDragLeaveEvent *event) |
|
96 | 96 | { |
|
97 |
setStyleSheet(QString |
|
|
97 | setStyleSheet(QString{}); | |
|
98 | 98 | } |
|
99 | 99 | |
|
100 | 100 | void TimeWidget::dropEvent(QDropEvent *event) |
@@ -109,7 +109,7 void TimeWidget::dropEvent(QDropEvent *event) | |||
|
109 | 109 | event->ignore(); |
|
110 | 110 | } |
|
111 | 111 | |
|
112 |
setStyleSheet(QString |
|
|
112 | setStyleSheet(QString{}); | |
|
113 | 113 | } |
|
114 | 114 | |
|
115 | 115 |
@@ -62,7 +62,7 struct VisualizationDragDropContainer::VisualizationDragDropContainerPrivate { | |||
|
62 | 62 | |
|
63 | 63 | bool allowMergeForMimeData(const QMimeData *data) const |
|
64 | 64 | { |
|
65 |
|
|
|
65 | auto result = false; | |
|
66 | 66 | for (auto it = m_AcceptedMimeTypes.constBegin(); it != m_AcceptedMimeTypes.constEnd(); |
|
67 | 67 | ++it) { |
|
68 | 68 |
General Comments 1
You need to be logged in to leave comments.
Login now