Revision: 1044
http://dcplusplus.svn.sourceforge.net/dcplusplus/?rev=1044&view=rev
Author: zouzou123gen
Date: 2008-03-18 12:30:28 -0700 (Tue, 18 Mar 2008)
Log Message:
-----------
attachTextBox calls in AboutDlg (needed for fancy menus...)
Modified Paths:
--------------
dcplusplus/trunk/win32/AboutDlg.cpp
Modified: dcplusplus/trunk/win32/AboutDlg.cpp
===================================================================
--- dcplusplus/trunk/win32/AboutDlg.cpp 2008-03-18 19:06:54 UTC (rev 1043)
+++ dcplusplus/trunk/win32/AboutDlg.cpp 2008-03-18 19:30:28 UTC (rev 1044)
@@ -56,8 +56,8 @@
setText(T_("About DC++"));
setItemText(IDC_VERSION, Text::toT(APPNAME " " VERSIONSTRING) + T_("\n(c) Copyright 2001-2008 Jacek Sieka\nEx-codeveloper: Per Lind\303\251n\nGraphics: Martin Skogevall et al.\nDC++ is licenced under GPL\nhttp://dcplusplus.sourceforge.net/"));
- setItemText(IDC_TTH, WinUtil::tth);
- setItemText(IDC_THANKS, Text::toT(thanks));
+ attachTextBox(IDC_TTH)->setText(WinUtil::tth);
+ attachTextBox(IDC_THANKS)->setText(Text::toT(thanks));
setItemText(IDC_TOTALS, str(TF_("Upload: %1%, Download: %2%") % Text::toT(Util::formatBytes(SETTING(TOTAL_UPLOAD))) % Text::toT(Util::formatBytes(SETTING(TOTAL_DOWNLOAD)))));
setItemText(IDC_GREETZ, T_("Greetz and Contributors"));
setItemText(IDC_TOTALS, T_("Totals"));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|