diff options
author | Michael Dickens <michael.dickens@ettus.com> | 2019-10-29 10:28:51 -0400 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2019-11-01 16:02:51 +0100 |
commit | bfdc786d3b4f118492a585fc912fec85468414fe (patch) | |
tree | 376dbc20ab11eb2e5f409ddedc869a130a99d9b5 | |
parent | 189cc957e8dd5956771f7676d0a14ce573672432 (diff) |
qtgui: fix 2 comment typos
-rw-r--r-- | gr-qtgui/examples/c++/display_qt.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-qtgui/examples/c++/display_qt.cc b/gr-qtgui/examples/c++/display_qt.cc index dd3a7a0a0a..21a299c93a 100644 --- a/gr-qtgui/examples/c++/display_qt.cc +++ b/gr-qtgui/examples/c++/display_qt.cc @@ -30,11 +30,11 @@ mywindow::mywindow() : QWidget() tab0 = new QTabWidget(); tab1 = new QTabWidget(); - // Add the tab widgets to the layou + // Add the tab widgets to the layout layout->addWidget(tab0); layout->addWidget(tab1); - // Set the layout as the main widget's layou + // Set the layout as the main widget's layout setLayout(layout); // Simple resizing of the app |