From owner-svn-ports-head@freebsd.org Sun Feb 5 18:58:28 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3DCD2CD277F; Sun, 5 Feb 2017 18:58:28 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0D7811DA6; Sun, 5 Feb 2017 18:58:27 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v15IwRVS022732; Sun, 5 Feb 2017 18:58:27 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v15IwRrq022730; Sun, 5 Feb 2017 18:58:27 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201702051858.v15IwRrq022730@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 5 Feb 2017 18:58:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433447 - in head/sysutils/qpxtool: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Feb 2017 18:58:28 -0000 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); }