X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fwidgets%2Fpopuptoolbutton.cpp;h=3fc2eb20aa9be8e15c6f267a5aed8ebb6769c0bb;hp=75aa76a552777e2fe44aa056cd7f8711f401e9e5;hb=2601ce965fc455d23f5a964b84ddd74eb93705c4;hpb=2acdb232d6bb452cfdfaea3ef5218fb4da592329 diff --git a/pv/widgets/popuptoolbutton.cpp b/pv/widgets/popuptoolbutton.cpp index 75aa76a5..3fc2eb20 100644 --- a/pv/widgets/popuptoolbutton.cpp +++ b/pv/widgets/popuptoolbutton.cpp @@ -14,11 +14,10 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ -#include +#include #include "popuptoolbutton.hpp" @@ -27,7 +26,7 @@ namespace widgets { PopupToolButton::PopupToolButton(QWidget *parent) : QToolButton(parent), - popup_(NULL) + popup_(nullptr) { connect(this, SIGNAL(clicked(bool)), this, SLOT(on_clicked(bool))); } @@ -45,7 +44,7 @@ void PopupToolButton::set_popup(Popup *popup) void PopupToolButton::on_clicked(bool) { - if(!popup_) + if (!popup_) return; const QRect r = rect(); @@ -54,5 +53,5 @@ void PopupToolButton::on_clicked(bool) popup_->show(); } -} // widgets -} // pv +} // namespace widgets +} // namespace pv