Skip to content

Commit 67221df

Browse files
author
rncbc
committed
- Fixed an early crash when the singleton/unique application
instance setup option is turned off.
1 parent 4cdda38 commit 67221df

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ ChangeLog
66

77
GIT HEAD
88

9+
- Fixed an early crash when the singleton/unique application
10+
instance setup option is turned off.
11+
912
- Almost complete overhaul on the configure script command
1013
line options, wrt. installation directories specification,
1114
eg. --prefix, --bindir, --libdir, --datadir and --mandir.

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Process this file with autoconf to produce a configure script.
2-
AC_INIT(QjackCtl, 0.4.3.4, rncbc@rncbc.org, qjackctl)
2+
AC_INIT(QjackCtl, 0.4.3.5, rncbc@rncbc.org, qjackctl)
33

44
AC_CONFIG_SRCDIR(src/qjackctl.cpp)
55
AC_CONFIG_HEADERS(src/config.h)

src/qjackctl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ class qjackctlApplication : public QApplication
269269
#ifdef CONFIG_XUNIQUE
270270
void x11PropertyNotify(Window w)
271271
{
272-
if (m_pWidget && m_wOwner == w) {
272+
if (m_pDisplay && m_pWidget && m_wOwner == w) {
273273
// Always check whether our property-flag is still around...
274274
Atom aType;
275275
int iFormat = 0;

0 commit comments

Comments
 (0)