diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-11-17 04:41:18 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-11-17 04:41:18 +0100 |
commit | dceabff6cfc6bd6572a98b5c8f7775b42dc732a7 (patch) | |
tree | ef8f6ec6c5ea03af65b656df0f47a20e26cabba1 /src/interface.h | |
parent | 2542eb02648294256a01ae4ecb6ac81bc8ab5094 (diff) | |
download | sciteco-dceabff6cfc6bd6572a98b5c8f7775b42dc732a7.tar.gz |
renamed the "NCurses" UI to "Curses" internally
* does not change ./configure parameters
You still have to specifiy --with-interface=ncurses for
the Curses interface with default settings
* the "NCurses" UI was used for many different Curses
variants, so plain "Curses" is a better name.
Diffstat (limited to 'src/interface.h')
-rw-r--r-- | src/interface.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interface.h b/src/interface.h index 8fa0112..a883a5f 100644 --- a/src/interface.h +++ b/src/interface.h @@ -327,8 +327,8 @@ public: #ifdef INTERFACE_GTK #include "interface-gtk.h" -#elif defined(INTERFACE_NCURSES) -#include "interface-ncurses.h" +#elif defined(INTERFACE_CURSES) +#include "interface-curses.h" #else #error No interface selected! #endif |