comparison gui/src/terminal/TerminalEmulation.cpp @ 13682:c0e0625ffd13

Adjustements for compiling on Windows.
author Jacob@Jacob-PC
date Mon, 26 Sep 2011 07:55:20 +0200
parents c0e66d6e3dc8
children
comparison
equal deleted inserted replaced
13681:ee7f4294d162 13682:c0e0625ffd13
26 #ifdef Q_OS_UNIX 26 #ifdef Q_OS_UNIX
27 TerminalEmulation *terminalEmulation = new LinuxTerminalEmulation (); 27 TerminalEmulation *terminalEmulation = new LinuxTerminalEmulation ();
28 terminalEmulation->m_terminal = terminal; 28 terminalEmulation->m_terminal = terminal;
29 return terminalEmulation; 29 return terminalEmulation;
30 #endif 30 #endif
31 #ifdef Q_OS_WIN
32 // TODO: Implement on Windows.
33 return 0;
34 #endif
31 } 35 }
32 36
33 TerminalEmulation::TerminalEmulation () 37 TerminalEmulation::TerminalEmulation ()
34 : QObject () 38 : QObject ()
35 { 39 {