|
From: <arj...@us...> - 2014-01-28 20:23:58
|
Revision: 12965
http://sourceforge.net/p/plplot/code/12965
Author: arjenmarkus
Date: 2014-01-28 20:23:52 +0000 (Tue, 28 Jan 2014)
Log Message:
-----------
Small corrections (FALSE instead of 0, plFramePtr->tkwin instead of new and a few superfluous empty lines removed)
Modified Paths:
--------------
trunk/bindings/tk/plframe.c
trunk/drivers/tk.c
trunk/drivers/wingcc.c
Modified: trunk/bindings/tk/plframe.c
===================================================================
--- trunk/bindings/tk/plframe.c 2014-01-28 09:57:01 UTC (rev 12964)
+++ trunk/bindings/tk/plframe.c 2014-01-28 20:23:52 UTC (rev 12965)
@@ -469,7 +469,7 @@
// Start up event handlers and other good stuff
- Tk_SetClass( new, "Plframe" );
+ Tk_SetClass( plFramePtr->tkwin, "Plframe" );
Tk_CreateEventHandler( plFramePtr->tkwin, StructureNotifyMask,
PlFrameConfigureEH, (ClientData) plFramePtr );
Modified: trunk/drivers/tk.c
===================================================================
--- trunk/drivers/tk.c 2014-01-28 09:57:01 UTC (rev 12964)
+++ trunk/drivers/tk.c 2014-01-28 20:23:52 UTC (rev 12965)
@@ -268,7 +268,7 @@
if ( dev->iodev == NULL )
plexit( "plD_init_tk: Out of memory." );
- dev->exit_eventloop = 0;
+ dev->exit_eventloop = FALSE;
// Variables used in querying plserver for events
Modified: trunk/drivers/wingcc.c
===================================================================
--- trunk/drivers/wingcc.c 2014-01-28 09:57:01 UTC (rev 12964)
+++ trunk/drivers/wingcc.c 2014-01-28 20:23:52 UTC (rev 12965)
@@ -981,8 +981,6 @@
case PLSTATE_CMAP0:
case PLSTATE_CMAP1:
dev->colour = RGB( pls->curcolor.r, pls->curcolor.g, pls->curcolor.b );
-
-
break;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|