Dirk, On 17 June 2015 at 13:31, Dirk Hohndel <[email protected]> wrote:
> On Tue, Jun 16, 2015 at 05:16:16PM -1000, Linus Torvalds wrote: > > On Tue, Jun 16, 2015 at 4:27 PM, Dirk Hohndel <[email protected]> wrote: > > > Compiled for me... > > > I'm out at dinner. Will look tonight. > > > > I suspect you compile without debugging, so that the Q_ASSERT_X() goes > away. > > I compile with debugging. No idea why this didn't get me... > > > The problem seems to be so trivial that I couldn't even see the > > obviousness of it at first: m_Instance vs m_instance (notice the wrong > > capitalization). > > :facepalm: > > Fix pushed > The fix wasn't quite a fix. This should be it. Rick
From 063adc20ef9197db9e952f4681f2fbbdb95ed4e2 Mon Sep 17 00:00:00 2001 From: Rick Walsh <[email protected]> Date: Wed, 17 Jun 2015 18:11:32 +1000 Subject: [PATCH] Re-fix silly typo The previous Fix silly typo patch didn't quite work. This one should Signed-off-by: Rick Walsh <[email protected]> --- windowtitleupdate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windowtitleupdate.cpp b/windowtitleupdate.cpp index e6779fa..eec324c 100644 --- a/windowtitleupdate.cpp +++ b/windowtitleupdate.cpp @@ -4,7 +4,7 @@ WindowTitleUpdate *WindowTitleUpdate::m_instance = NULL; WindowTitleUpdate::WindowTitleUpdate(QObject *parent) : QObject(parent) { - Q_ASSERT_X(m__nstance == NULL, "WindowTitleUpdate", "WindowTitleUpdate recreated!"); + Q_ASSERT_X(m_instance == NULL, "WindowTitleUpdate", "WindowTitleUpdate recreated!"); m_instance = this; } -- 2.4.3
_______________________________________________ subsurface mailing list [email protected] http://lists.subsurface-divelog.org/cgi-bin/mailman/listinfo/subsurface
