linuxdcpp-team team mailing list archive
-
linuxdcpp-team team
-
Mailing list archive
-
Message #03436
[Branch ~dcplusplus-team/dcplusplus/trunk] Rev 2445: Compile fix
------------------------------------------------------------
revno: 2445
committer: eMTee <emtee11@xxxxxxxxx>
branch nick: dcplusplus
timestamp: Sun 2011-02-27 16:29:49 +0100
message:
Compile fix
modified:
help/keyboard_commands.html
win32/AspectChat.h
--
lp:dcplusplus
https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk
Your team Dcplusplus-team is subscribed to branch lp:dcplusplus.
To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk/+edit-subscription
=== modified file 'help/keyboard_commands.html'
--- help/keyboard_commands.html 2011-02-25 16:41:03 +0000
+++ help/keyboard_commands.html 2011-02-27 15:29:49 +0000
@@ -32,9 +32,9 @@
<dt>Ctrl + E</dt>
<dd>Refresh file list.</dd>
<dt>F3</dt>
- <dt>Ctrl + F<dt>
+ <dt>Ctrl + F</dt>
<dd>In-place search within the chat of <placeholder><a href="window_hub.html">Hub</a></placeholder> and <placeholder><a href="window_pm.html">Private Message</a></placeholder> windows and in <placeholder><a href="window_file_list.html">File List</a></placeholder> windows.<br/>
- <b>F3</b> continues the previous search or initiates one if no search term has yet been defined. On the other hand, <b>Ctrl + F</b> always initiates a new search.
+ <b>F3</b> continues the previous search or initiates one if no search term has yet been defined. On the other hand, <b>Ctrl + F</b> always initiates a new search.</dd>
<dt>Ctrl + G</dt>
<dd>Quick connect to a group of favorite hubs.</dd>
<dt>Ctrl + H</dt>
=== modified file 'win32/AspectChat.h'
--- win32/AspectChat.h 2011-02-25 16:41:03 +0000
+++ win32/AspectChat.h 2011-02-27 15:29:49 +0000
@@ -58,8 +58,8 @@
t().addAccel(FALT, 'M', std::bind(&dwt::Control::setFocus, message));
t().addAccel(FALT, 'S', std::bind(&ThisType::sendMessage_, this));
t().addAccel(0, VK_ESCAPE, std::bind(&ThisType::handleEscape, this));
- t().addAccel(FCONTROL, 'F', [this] { chat->findTextNew(); });
- t().addAccel(0, VK_F3, [this] { chat->findTextNext(); });
+ t().addAccel(FCONTROL, 'F', [this] { GCC_WTF->chat->findTextNew(); });
+ t().addAccel(0, VK_F3, [this] { GCC_WTF->chat->findTextNext(); });
}
virtual ~AspectChat() { }