From ef7e3146c97eda68f38632cc60edf7a42e846610 Mon Sep 17 00:00:00 2001 From: Joel Holdsworth Date: Mon, 11 Mar 2013 23:26:39 +0000 Subject: [PATCH] Corrected order of MainWindow class declaration --- pv/mainwindow.h | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) 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 -- 2.30.2