]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/Timeout_pimpl.C
Bugfixes: checkboxes to radiobuttons (from J�rgen S) and remove a little
[lyx.git] / src / frontends / xforms / Timeout_pimpl.C
index 3232c982ac050c1e9475d67783fda261bff3f6d9..ad96ae2d879642e71069dd4c0fb0436ced4e92f7 100644 (file)
@@ -7,28 +7,34 @@
  * \author John Levon
  */
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include <config.h>
 
 #include FORMS_H_LOCATION
 
+#ifdef __GNUG__
+#pragma implementation
+#endif
+
 #include "Timeout_pimpl.h"
 #include "debug.h"
 
 using std::endl;
 
+namespace {
+
 extern "C" {
+       
        static
        void C_intern_timeout_cb(int, void * data)
        {
                Timeout * to = static_cast<Timeout *>(data);
                to->emit();
        }
+
 }
 
+} // namespace anon
+
 
 Timeout::Pimpl::Pimpl(Timeout * owner)
        : owner_(owner), timeout_id(-1)