X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fwidgets%2Fpopuptoolbutton.cpp;h=eb33c383accce52af1ea8118535106b19a3cb4f7;hp=a5886aafed4a86b0c64891a5386ca71a934fba2d;hb=efdec55aec1a137460fa362a381ed1904182bfed;hpb=8dbbc7f0b9ea59d0f0d62225772f8a56eee125f5 diff --git a/pv/widgets/popuptoolbutton.cpp b/pv/widgets/popuptoolbutton.cpp index a5886aa..eb33c38 100644 --- a/pv/widgets/popuptoolbutton.cpp +++ b/pv/widgets/popuptoolbutton.cpp @@ -14,20 +14,19 @@ * 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 "popuptoolbutton.h" +#include "popuptoolbutton.hpp" namespace pv { 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();