svn commit: r433447 - in head/sysutils/qpxtool: . files
Jan Beich
jbeich at FreeBSD.org
Sun Feb 5 18:58:28 UTC 2017
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);
}
More information about the svn-ports-all
mailing list