|
From: CVS C. to T. <the...@li...> - 2010-11-02 21:24:15
|
Revision: 553
http://themis.svn.sourceforge.net/themis/?rev=553&view=rev
Author: mark_hellegers
Date: 2010-11-02 21:24:09 +0000 (Tue, 02 Nov 2010)
Log Message:
-----------
- Added BRect frame as an argument to SettingsView, so the view can be positioned right immediately.
Modified Paths:
--------------
trunk/themis/common/plugclass.cpp
trunk/themis/common/plugclass.h
Modified: trunk/themis/common/plugclass.cpp
===================================================================
--- trunk/themis/common/plugclass.cpp 2010-10-30 20:03:58 UTC (rev 552)
+++ trunk/themis/common/plugclass.cpp 2010-11-02 21:24:09 UTC (rev 553)
@@ -220,6 +220,6 @@
return NULL;
}
-BView *PlugClass::SettingsView() {
+BView *PlugClass::SettingsView(BRect frame) {
return NULL;
}
Modified: trunk/themis/common/plugclass.h
===================================================================
--- trunk/themis/common/plugclass.h 2010-10-30 20:03:58 UTC (rev 552)
+++ trunk/themis/common/plugclass.h 2010-11-02 21:24:09 UTC (rev 553)
@@ -380,7 +380,7 @@
be used to generate a simple about view.
*/
virtual char *SettingsViewLabel();//name as it should appear in the settings list
- virtual BView *SettingsView();
+ virtual BView *SettingsView(BRect frame);
/*
The top level view to add to the settings window. Be sure to SetTarget()
any controls to this view in either the constructor, AllAttached(), or
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|