]> sigrok.org Git - pulseview.git/commitdiff
Drop unneeded /* ENABLE_DECODE */ comments.
authorUwe Hermann <redacted>
Fri, 20 Feb 2015 10:25:45 +0000 (11:25 +0100)
committerUwe Hermann <redacted>
Fri, 20 Feb 2015 10:25:45 +0000 (11:25 +0100)
(to match the rest of the code base where these are not used either)

pv/mainwindow.cpp
pv/mainwindow.hpp

index 49152a26fe68088565a1ee0068ae235ff597ef8c..f907f09cce33f118b0c830dbc0ee564f50a76501 100644 (file)
@@ -104,7 +104,7 @@ MainWindow::MainWindow(DeviceManager &device_manager,
        action_about_(new QAction(this))
 #ifdef ENABLE_DECODE
        , menu_decoders_add_(new pv::widgets::DecoderMenu(this, true))
-#endif /* ENABLE_DECODE */
+#endif
 {
        setup_ui();
        restore_ui_settings();
@@ -171,7 +171,7 @@ QMenu* MainWindow::menu_decoder_add() const
 {
        return menu_decoders_add_;
 }
-#endif /* ENABLE_DECODE */
+#endif
 
 void MainWindow::run_stop()
 {
index d2bcd918361ce6fc4e053f3f7d6196d37412154f..2860c681b91d70f7657318255513c9a12779c689 100644 (file)
@@ -53,7 +53,7 @@ class View;
 namespace widgets {
 #ifdef ENABLE_DECODE
 class DecoderMenu;
-#endif /* ENABLE_DECODE */
+#endif
 }
 
 class MainWindow : public QMainWindow
@@ -91,7 +91,7 @@ public:
 
 #ifdef ENABLE_DECODE
        QMenu* menu_decoder_add() const;
-#endif /* ENABLE_DECODE */
+#endif
 
        void run_stop();
 
@@ -173,7 +173,7 @@ private:
 
 #ifdef ENABLE_DECODE
        QMenu *const menu_decoders_add_;
-#endif /* ENABLE_DECODE */
+#endif
 };
 
 } // namespace pv