← Back to team overview

linuxdcpp-team team mailing list archive

[Branch ~dcplusplus-team/dcplusplus/trunk] Rev 2360: different code for the up arrow to satisfy older Windows

 

------------------------------------------------------------
revno: 2360
committer: poy <poy@xxxxxxxxxx>
branch nick: trunk
timestamp: Wed 2010-12-22 17:40:11 +0100
message:
  different code for the up arrow to satisfy older Windows
modified:
  help/window_file_list.html
  win32/DirectoryListingFrame.cpp


--
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/window_file_list.html'
--- help/window_file_list.html	2010-12-21 14:40:47 +0000
+++ help/window_file_list.html	2010-12-22 16:40:11 +0000
@@ -45,7 +45,7 @@
 
 <h2>Search row (bottom)</h2>
 A search row may be shown right above the status bar to allow looking for files in the current file
-list. Its visibility is controlled by the "Find &#9650;" button.
+list. Its visibility is controlled by the "Find &#8710;" button.
 <dl style="margin-left: 40px;">
   <dt>Text-box (left)</dt>
   <dd cshelp="IDH_FILE_LIST_SEARCH_BOX">Enter your search terms here. The most recent searches can

=== modified file 'win32/DirectoryListingFrame.cpp'
--- win32/DirectoryListingFrame.cpp	2010-12-21 15:07:21 +0000
+++ win32/DirectoryListingFrame.cpp	2010-12-22 16:40:11 +0000
@@ -266,7 +266,7 @@
 		matchQueue->setHelpId(IDH_FILE_LIST_MATCH_QUEUE);
 		matchQueue->onClicked(std::bind(&DirectoryListingFrame::handleMatchQueue, this));
 
-		cs.caption = T_("Find") + _T(" \u25B2") /* up arrow */;
+		cs.caption = T_("Find") + _T(" \u2206") /* up arrow */;
 		find = addChild(cs);
 		find->setHelpId(IDH_FILE_LIST_FIND);
 		find->setImage(WinUtil::buttonIcon(IDI_SEARCH));