]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/timer.cpp
Now calculates clipping region from actual child HWNDs and not
[wxWidgets.git] / src / gtk1 / timer.cpp
index d56255b48188929c0ec73bb29f3d347c0d46cbc2..e004d2d4bea293908db6fb21824c1f23a1ead528 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Robert Roebling
 // Id:          $Id$
 // Copyright:   (c) 1998 Robert Roebling
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 
@@ -27,7 +27,8 @@
 
 IMPLEMENT_ABSTRACT_CLASS(wxTimer, wxEvtHandler)
 
-extern "C" gint timeout_callback( gpointer data )
+extern "C" {
+static gint timeout_callback( gpointer data )
 {
     wxTimer *timer = (wxTimer*)data;
 
@@ -54,6 +55,7 @@ extern "C" gint timeout_callback( gpointer data )
 
     return TRUE;
 }
+}
 
 void wxTimer::Init()
 {