|
From: CVS C. to T. <the...@li...> - 2011-10-08 19:18:16
|
Revision: 665
http://themis.svn.sourceforge.net/themis/?rev=665&view=rev
Author: mark_hellegers
Date: 2011-10-08 19:18:10 +0000 (Sat, 08 Oct 2011)
Log Message:
-----------
Removed unused variable.
Modified Paths:
--------------
trunk/themis/framework/win.cpp
trunk/themis/framework/win.h
Modified: trunk/themis/framework/win.cpp
===================================================================
--- trunk/themis/framework/win.cpp 2011-08-15 23:48:04 UTC (rev 664)
+++ trunk/themis/framework/win.cpp 2011-10-08 19:18:10 UTC (rev 665)
@@ -78,7 +78,6 @@
SetSizeLimits(300, Screen.Frame().right, 200, Screen.Frame().bottom);
protocol=0;
- startup=true;
urlpopupwindow = NULL;
fNextWindow = NULL;
fOldFrame = Frame();
@@ -472,11 +471,6 @@
void Win :: WindowActivated(bool active) {
- if (startup) {
- startup = false;
- printf("WindowActivated\n");
- }
-
if(active == false) {
CloseUrlPopUpWindow();
}
Modified: trunk/themis/framework/win.h
===================================================================
--- trunk/themis/framework/win.h 2011-08-15 23:48:04 UTC (rev 664)
+++ trunk/themis/framework/win.h 2011-10-08 19:18:10 UTC (rev 665)
@@ -54,7 +54,6 @@
class Win : public BWindow, public MessageSystem {
private:
- bool startup;
uint32 protocol;
Win * fNextWindow;
BRect fOldFrame;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|