Use Qt's dialog where applicable (#1843)

This commit is contained in:
pajlada
2020-10-31 16:42:48 +01:00
committed by GitHub
parent 523874dc21
commit 1ee1e8837f
27 changed files with 118 additions and 62 deletions
+2 -2
View File
@@ -27,7 +27,7 @@ public:
* You can connect to the ::closed signal of this instance to get notified
* when the dialog is closed.
*/
ColorPickerDialog(const QColor &initial, QWidget *parent = nullptr);
ColorPickerDialog(const QColor &initial, QWidget *parent);
~ColorPickerDialog();
@@ -42,7 +42,7 @@ public:
*/
QColor selectedColor() const;
pajlada::Signals::NoArgSignal closed;
pajlada::Signals::Signal<QColor> closed;
protected:
void closeEvent(QCloseEvent *);