]> git.lyx.org Git - lyx.git/blobdiff - src/lyx_gui_misc.C
remove CXX_WORKING_NAMESPACES
[lyx.git] / src / lyx_gui_misc.C
index 539a3b1d56bd21765942d7331777ba4bbfc43fae..3d7983e67d2efea094034cb6e2518a5b520a9b97 100644 (file)
@@ -19,7 +19,6 @@
 #include "lyx_gui_misc.h"
 #include "BufferView.h"
 #include "buffer.h"
-#include "credits_form.h"
 #include "form1.h"
 #include "gettext.h"
 #include "lyx.h"
@@ -40,7 +39,6 @@ using std::endl;
 
 extern BufferView * current_view;
 
-extern FD_form_credits * fd_form_credits;
 extern FD_form_figure * fd_form_figure;
 extern FD_form_sendto * fd_form_sendto;
 extern FD_form_spell_check * fd_form_spell_check;
@@ -68,9 +66,6 @@ void RedrawAllBufferRelatedDialogs()
        if (fd_delim && fd_delim->delim->visible) {
                fl_redraw_form(fd_delim->delim);
        }
-       if (fd_form_credits && fd_form_credits->form_credits->visible) {
-               fl_redraw_form(fd_form_credits->form_credits);
-       }
        if (fd_form_figure->form_figure->visible) {
                fl_redraw_form(fd_form_figure->form_figure);
        }
@@ -151,7 +146,6 @@ void updateAllVisibleBufferRelatedDialogs(bool)
 {
        if (current_view->buffer() &&  current_view->buffer()->isReadonly()) {
                // a little crude perhaps but it works. ARRae
-#ifndef ALWAYS_CLOSE_MATH_PANELS
                // The math popups should be closed only if we switch
                // to a readonly buffer
                if (fd_panel) {
@@ -179,40 +173,7 @@ void updateAllVisibleBufferRelatedDialogs(bool)
                                fl_hide_form(fd_matrix->matrix);
                        }
                }
-#endif
-       }
-
-       // We have either changed buffers or changed the readonly status
-       // so the safest thing to do is hide all inset popups that
-       // are editting insets from the previous buffer or aren't
-       // allowed in readonly docs.
-#ifdef ALWAYS_CLOSE_MATH_PANELS
-       if (fd_panel) {
-               if (fd_panel->panel->visible) {
-                       fl_hide_form(fd_panel->panel);
-               }
        }
-       if (fd_delim) {
-               if (fd_delim->delim->visible) {
-                       fl_hide_form(fd_delim->delim);
-               }
-       }
-       if (fd_deco) {
-               if (fd_deco->deco->visible) {
-                       fl_hide_form(fd_deco->deco);
-               }
-       }
-       if (fd_space) {
-               if (fd_space->space->visible) {
-                       fl_hide_form(fd_space->space);
-               }
-       }
-       if (fd_matrix) {
-               if (fd_matrix->matrix->visible) {
-                       fl_hide_form(fd_matrix->matrix);
-               }
-       }
-#endif
        HideFiguresPopups();
 }