make slots normal functions
This commit is contained in:
parent
b100fc8e51
commit
5de88ef7a9
1 changed files with 1 additions and 2 deletions
|
@ -17,12 +17,11 @@ class MainWindow : public QMainWindow
|
||||||
MainWindow();
|
MainWindow();
|
||||||
Marketplace* getMarketplace() { return marketplace_.get(); }
|
Marketplace* getMarketplace() { return marketplace_.get(); }
|
||||||
|
|
||||||
private slots:
|
private:
|
||||||
void on_actionEditSeller_triggered();
|
void on_actionEditSeller_triggered();
|
||||||
void on_sellerNoEdit_checkSellerNo();
|
void on_sellerNoEdit_checkSellerNo();
|
||||||
void on_paidButton_triggered();
|
void on_paidButton_triggered();
|
||||||
|
|
||||||
private:
|
|
||||||
Ui::MainWindow ui_;
|
Ui::MainWindow ui_;
|
||||||
std::unique_ptr<Marketplace> marketplace_;
|
std::unique_ptr<Marketplace> marketplace_;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue