diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2019-08-17 20:32:20 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2019-08-22 15:05:58 +0200 |
commit | b08d13aed2a7e7ffdee09833bb24db8ce92dce66 (patch) | |
tree | 4846eebe25b48c615cbe07d2a9f4e79d5e8ff72d /gr-qtgui/lib/edit_box_msg_impl.cc | |
parent | c6cb3bbc35153a9635d69eddab0d252f7441b854 (diff) |
clang-tidy in gnuradio-runtime: use empty() instead of size()!=0
Diffstat (limited to 'gr-qtgui/lib/edit_box_msg_impl.cc')
-rw-r--r-- | gr-qtgui/lib/edit_box_msg_impl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-qtgui/lib/edit_box_msg_impl.cc b/gr-qtgui/lib/edit_box_msg_impl.cc index 0339276276..67fa5e9b39 100644 --- a/gr-qtgui/lib/edit_box_msg_impl.cc +++ b/gr-qtgui/lib/edit_box_msg_impl.cc @@ -106,7 +106,7 @@ edit_box_msg_impl::edit_box_msg_impl(data_type_t type, d_key->setFixedWidth(width); // Verify that a default key has been set or emit an error - if (key.size() == 0) { + if (key.empty()) { throw std::runtime_error( "When using static + pair mode, please set a default key."); } @@ -118,7 +118,7 @@ edit_box_msg_impl::edit_box_msg_impl(data_type_t type, } d_label = NULL; - if (label != "") { + if (!label.empty()) { d_label = new QLabel(QString(label.c_str())); d_vlayout->addWidget(d_label); } |