Date: Sun, 5 Feb 2017 18:58:27 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433447 - in head/sysutils/qpxtool: . files Message-ID: <201702051858.v15IwRrq022730@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Sun Feb 5 18:58:26 2017 New Revision: 433447 URL: https://svnweb.freebsd.org/changeset/ports/433447 Log: sysutils/qpxtool: fix r432982 to make more sense Modified: head/sysutils/qpxtool/Makefile (contents, props changed) head/sysutils/qpxtool/files/patch-gui_src_mainwindow.cpp (contents, props changed) Modified: head/sysutils/qpxtool/Makefile ============================================================================== --- head/sysutils/qpxtool/Makefile Sun Feb 5 18:58:19 2017 (r433446) +++ head/sysutils/qpxtool/Makefile Sun Feb 5 18:58:26 2017 (r433447) @@ -3,7 +3,7 @@ PORTNAME= qpxtool PORTVERSION= 0.7.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTVERSION:C/\.[^.]*$/.x/}/${DISTVERSION} Modified: head/sysutils/qpxtool/files/patch-gui_src_mainwindow.cpp ============================================================================== --- head/sysutils/qpxtool/files/patch-gui_src_mainwindow.cpp Sun Feb 5 18:58:19 2017 (r433446) +++ head/sysutils/qpxtool/files/patch-gui_src_mainwindow.cpp Sun Feb 5 18:58:26 2017 (r433447) @@ -5,7 +5,7 @@ QAction *act = (QAction*) sender(); idx = act_sblist.indexOf(act); - if (act<0) return; -+ if (act == NULL) return; ++ if (idx<0) return; mwidget->selectTab(idx); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702051858.v15IwRrq022730>