aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2015-03-18 02:14:45 +0100
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2015-03-18 02:53:56 +0100
commitc3e9da06da7d36fcfb62427851592fc1ba87dbe8 (patch)
tree7e6c9945437e7a4c6c1fee22c99a98f85a359c42
parent34a4c7eceda6843efd60edd233f9db2d3b03ae81 (diff)
downloadsciteco-c3e9da06da7d36fcfb62427851592fc1ba87dbe8.tar.gz
fixed compiling on G++ v4.4: It needs a more verbose syntax when calling template base class constructors
* v4.4 is still officially supported by SciTECO (see INSTALL) * Ubuntu Lucid appears to use v4.4 by default and lucid is till supported by PPA. So this should fix building SciTECO in its PPA for Ubuntu Lucid.
-rw-r--r--src/interface-curses.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/interface-curses.h b/src/interface-curses.h
index 50f4157..971d2fa 100644
--- a/src/interface-curses.h
+++ b/src/interface-curses.h
@@ -100,8 +100,7 @@ typedef class InterfaceCurses : public Interface<InterfaceCurses, ViewCurses> {
} popup;
public:
- InterfaceCurses() : Interface(),
- screen(NULL),
+ InterfaceCurses() : screen(NULL),
screen_tty(NULL),
info_window(NULL),
info_current(NULL),