Commit 67221df6 authored by rncbc's avatar rncbc
Browse files

- Fixed an early crash when the singleton/unique application

  instance setup option is turned off.
parent 4cdda385
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -6,6 +6,9 @@ ChangeLog

GIT HEAD

- Fixed an early crash when the singleton/unique application
  instance setup option is turned off.

- Almost complete overhaul on the configure script command
  line options, wrt. installation directories specification,
  eg. --prefix, --bindir, --libdir, --datadir and --mandir.
+1 −1
Original line number Diff line number Diff line
# Process this file with autoconf to produce a configure script.
AC_INIT(QjackCtl, 0.4.3.4, rncbc@rncbc.org, qjackctl)
AC_INIT(QjackCtl, 0.4.3.5, rncbc@rncbc.org, qjackctl)

AC_CONFIG_SRCDIR(src/qjackctl.cpp)
AC_CONFIG_HEADERS(src/config.h)
+1 −1
Original line number Diff line number Diff line
@@ -269,7 +269,7 @@ public:
#ifdef CONFIG_XUNIQUE
	void x11PropertyNotify(Window w)
	{
		if (m_pWidget && m_wOwner == w) {
		if (m_pDisplay && m_pWidget && m_wOwner == w) {
			// Always check whether our property-flag is still around...
			Atom aType;
			int iFormat = 0;