# HG changeset patch # User Torsten # Date 1377018677 -7200 # Node ID 756bb4b58ad0f2c1c807d196fcd170c68ecc2872 # Parent 17be601bc7833a50630d195e0ad27dd91b187bfb * main-window.h: exclude editor from widget list when qscintilla is missing diff -r 17be601bc783 -r 756bb4b58ad0 libgui/src/main-window.h --- a/libgui/src/main-window.h Tue Aug 20 09:42:35 2013 -0700 +++ b/libgui/src/main-window.h Tue Aug 20 19:11:17 2013 +0200 @@ -272,7 +272,9 @@ list.append (static_cast (history_window)); list.append (static_cast (file_browser_window)); list.append (static_cast (doc_browser_window)); +#ifdef HAVE_QSCINTILLA list.append (static_cast (editor_window)); +#endif list.append (static_cast (workspace_window)); return list; }