annotate src/stable-octave-3-termfocus.patch @ 3659:6a4cb2cb4493

build-gawk: update to build in native mingw * src/build-gawk.patch: add native mingw build rule
author John Donoghue <john.donoghue@ieee.org>
date Wed, 09 Jul 2014 19:56:54 -0400
parents 37d705830a35
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3574
37d705830a35 stable-octave: Add patch for terminal cursor from stable branch.
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
1 diff -r 3283ce934648 libgui/qterminal/libqterminal/win32/QWinTerminalImpl.cpp
37d705830a35 stable-octave: Add patch for terminal cursor from stable branch.
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
2 --- a/libgui/qterminal/libqterminal/win32/QWinTerminalImpl.cpp Fri Apr 04 11:40:40 2014 -0700
37d705830a35 stable-octave: Add patch for terminal cursor from stable branch.
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
3 +++ b/libgui/qterminal/libqterminal/win32/QWinTerminalImpl.cpp Fri Apr 04 20:38:10 2014 -0400
37d705830a35 stable-octave: Add patch for terminal cursor from stable branch.
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
4 @@ -267,9 +267,9 @@
37d705830a35 stable-octave: Add patch for terminal cursor from stable branch.
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
5 //////////////////////////////////////////////////////////////////////////////
37d705830a35 stable-octave: Add patch for terminal cursor from stable branch.
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
6
37d705830a35 stable-octave: Add patch for terminal cursor from stable branch.
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
7 QConsolePrivate::QConsolePrivate (QWinTerminalImpl* parent, const QString& cmd)
37d705830a35 stable-octave: Add patch for terminal cursor from stable branch.
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
8 - : q (parent), m_command (cmd), m_hasBlinkingCursor (true),
37d705830a35 stable-octave: Add patch for terminal cursor from stable branch.
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
9 - m_cursorType (BlockCursor), m_beginSelection (0, 0),
37d705830a35 stable-octave: Add patch for terminal cursor from stable branch.
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
10 - m_endSelection (0, 0), m_settingSelection (false),
37d705830a35 stable-octave: Add patch for terminal cursor from stable branch.
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
11 + : q (parent), m_command (cmd), m_cursorBlinking (false),
37d705830a35 stable-octave: Add patch for terminal cursor from stable branch.
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
12 + m_hasBlinkingCursor (true), m_cursorType (BlockCursor),
37d705830a35 stable-octave: Add patch for terminal cursor from stable branch.
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
13 + m_beginSelection (0, 0), m_endSelection (0, 0), m_settingSelection (false),
37d705830a35 stable-octave: Add patch for terminal cursor from stable branch.
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
14 m_process (NULL), m_inWheelEvent (false)
37d705830a35 stable-octave: Add patch for terminal cursor from stable branch.
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
15 {
37d705830a35 stable-octave: Add patch for terminal cursor from stable branch.
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
16 log (NULL);