]> 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 81a2eab2ca14e5288ed69252d7b2e66fcf6a968e..ad96ae2d879642e71069dd4c0fb0436ced4e92f7 100644 (file)
 
 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)