From: Joel Holdsworth Date: Mon, 11 Mar 2013 23:26:39 +0000 (+0000) Subject: Corrected order of MainWindow class declaration X-Git-Tag: pulseview-0.1.0~86 X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=commitdiff_plain;h=ef7e3146c97eda68f38632cc60edf7a42e846610 Corrected order of MainWindow class declaration --- diff --git a/pv/mainwindow.h b/pv/mainwindow.h index 8b797374..3887717f 100644 --- a/pv/mainwindow.h +++ b/pv/mainwindow.h @@ -57,6 +57,30 @@ private: void session_error(const QString text, const QString info_text); +private slots: + void load_file(QString file_name); + + + void show_session_error( + const QString text, const QString info_text); + + void on_actionOpen_triggered(); + void on_actionQuit_triggered(); + + void on_actionConnect_triggered(); + + void on_actionViewZoomIn_triggered(); + + void on_actionViewZoomOut_triggered(); + + void on_actionViewShowCursors_triggered(); + + void on_actionAbout_triggered(); + + void run_stop(); + + void capture_state_changed(int state); + private: SigSession _session; @@ -83,30 +107,6 @@ private: QToolBar *_toolbar; SamplingBar *_sampling_bar; - -private slots: - void load_file(QString file_name); - - - void show_session_error( - const QString text, const QString info_text); - - void on_actionOpen_triggered(); - void on_actionQuit_triggered(); - - void on_actionConnect_triggered(); - - void on_actionViewZoomIn_triggered(); - - void on_actionViewZoomOut_triggered(); - - void on_actionViewShowCursors_triggered(); - - void on_actionAbout_triggered(); - - void run_stop(); - - void capture_state_changed(int state); }; } // namespace pv