make slots normal functions

This commit is contained in:
Martin Brodbeck 2018-07-23 09:14:43 +02:00
parent b100fc8e51
commit 5de88ef7a9
1 changed files with 1 additions and 2 deletions

View File

@ -17,12 +17,11 @@ class MainWindow : public QMainWindow
MainWindow();
Marketplace* getMarketplace() { return marketplace_.get(); }
private slots:
private:
void on_actionEditSeller_triggered();
void on_sellerNoEdit_checkSellerNo();
void on_paidButton_triggered();
private:
Ui::MainWindow ui_;
std::unique_ptr<Marketplace> marketplace_;
};