Namespace fix in FTermFreeBSD and FTermOpenBSD
This commit is contained in:
parent
c15cb0ba24
commit
642e61b6e1
|
@ -1,5 +1,10 @@
|
|||
2018-11-25 Markus Gans <guru.mail@muenster.de>
|
||||
* Namespace fix in FTermFreeBSD and FTermOpenBSD
|
||||
|
||||
2018-11-24 Markus Gans <guru.mail@muenster.de>
|
||||
* Improved Sun Microsystems workstation console quirks
|
||||
* Improved Sun Microsystems workstation console quirks
|
||||
* Handling environment variables with numbers in FTerm
|
||||
* Memory management fix in example program transparent
|
||||
|
||||
2018-11-21 Markus Gans <guru.mail@muenster.de>
|
||||
* New type FKey for key inputs
|
||||
|
|
|
@ -23,6 +23,9 @@
|
|||
#include "final/fcharmap.h"
|
||||
#include "final/ftermfreebsd.h"
|
||||
|
||||
namespace finalcut
|
||||
{
|
||||
|
||||
// static class attributes
|
||||
#if defined(__FreeBSD__) || defined(__DragonFly__)
|
||||
uInt FTermFreeBSD::bsd_alt_keymap = 0;
|
||||
|
@ -31,8 +34,6 @@
|
|||
bool FTermFreeBSD::meta_sends_escape = true;
|
||||
#endif
|
||||
|
||||
namespace finalcut
|
||||
{
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// class FTermFreeBSD
|
||||
|
|
|
@ -22,14 +22,15 @@
|
|||
|
||||
#include "final/ftermopenbsd.h"
|
||||
|
||||
namespace finalcut
|
||||
{
|
||||
|
||||
// static class attributes
|
||||
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
||||
kbd_t FTermOpenBSD::bsd_keyboard_encoding = 0;
|
||||
bool FTermOpenBSD::meta_sends_escape = true;
|
||||
#endif
|
||||
|
||||
namespace finalcut
|
||||
{
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// class FTermOpenBSD
|
||||
|
|
Loading…
Reference in New Issue