|
From: <zou...@us...> - 2007-12-04 18:38:56
|
Revision: 927
http://dcplusplus.svn.sourceforge.net/dcplusplus/?rev=927&view=rev
Author: zouzou123gen
Date: 2007-12-04 10:38:49 -0800 (Tue, 04 Dec 2007)
Log Message:
-----------
actually use the seed made for status bars; fixes size grips
Modified Paths:
--------------
dcplusplus/trunk/changelog.txt
dcplusplus/trunk/win32/AspectStatus.h
Modified: dcplusplus/trunk/changelog.txt
===================================================================
--- dcplusplus/trunk/changelog.txt 2007-12-03 22:25:40 UTC (rev 926)
+++ dcplusplus/trunk/changelog.txt 2007-12-04 18:38:49 UTC (rev 927)
@@ -23,6 +23,7 @@
* Close tab with middle mouse button (thanks poy)
* Fixed socket ip bind (thanks garg's quasi-friend)
* Finished UCMD extension draft implementation
+* Fixed status bars (poy)
-- 0.703 2007-11-08 --
* Fixed invalid strings (thanks james ross)
Modified: dcplusplus/trunk/win32/AspectStatus.h
===================================================================
--- dcplusplus/trunk/win32/AspectStatus.h 2007-12-03 22:25:40 UTC (rev 926)
+++ dcplusplus/trunk/win32/AspectStatus.h 2007-12-04 18:38:49 UTC (rev 927)
@@ -41,7 +41,7 @@
if(sizeGrip) {
cs.style |= SBARS_SIZEGRIP;
}
- status = static_cast<WidgetType*>(this)->createStatusBarSections();
+ status = static_cast<WidgetType*>(this)->createStatusBarSections(cs);
statusTip = static_cast<WidgetType*>(this)->createToolTip();
statusTip->setTool(status, std::tr1::bind(&ThisType::handleToolTip, this));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|