]> git.lyx.org Git - lyx.git/blobdiff - src/bufferview_funcs.C
Remove unused font variable which caused a warning.
[lyx.git] / src / bufferview_funcs.C
index f9b9689a5db903930064aa78de3d2b52a8653e8a..4c81cdd459270db5bccae6b383502543412a6cdb 100644 (file)
@@ -103,46 +103,6 @@ void changeDepth(BufferView * bv, LyXText * text, int decInc)
 }
 
 
-// How should this actually work? Should it prohibit input in all BufferViews,
-// or just in the current one? If "just the current one", then it should be
-// placed in BufferView. If "all BufferViews" then LyXGUI (I think) should
-// run "ProhibitInput" on all LyXViews which will run prohibitInput on all
-// BufferViews. Or is it perhaps just the (input in) BufferViews in the
-// current LyxView that should be prohibited (Lgb) (This applies to
-// "AllowInput" as well.)
-void ProhibitInput(BufferView * bv)
-{
-       bv->hideCursor();
-
-       static Cursor cursor;
-       static bool cursor_undefined = true;
-   
-       if (cursor_undefined){
-               cursor = XCreateFontCursor(fl_get_display(), XC_watch);
-               XFlush(fl_get_display());
-               cursor_undefined = false;
-       }
-   
-       /* set the cursor to the watch for all forms and the canvas */ 
-       XDefineCursor(fl_get_display(), bv->owner()->getForm()->window, 
-                     cursor);
-
-       XFlush(fl_get_display());
-       fl_deactivate_all_forms();
-}
-
-
-void AllowInput(BufferView * bv)
-{
-       /* reset the cursor from the watch for all forms and the canvas */
-   
-       XUndefineCursor(fl_get_display(), bv->owner()->getForm()->window);
-
-       XFlush(fl_get_display());
-       fl_activate_all_forms();
-}
-
-
 void Code(BufferView * bv)
 {
        LyXFont font(LyXFont::ALL_IGNORE);
@@ -169,7 +129,7 @@ void Roman(BufferView * bv)
 
 void StyleReset(BufferView * bv)
 {
-       LyXFont font(LyXFont::ALL_INHERIT, ignore_language);
+       LyXFont font(LyXFont::ALL_INHERIT);
        ToggleAndShow(bv, font);
 }
 
@@ -255,7 +215,7 @@ void ToggleAndShow(BufferView * bv, LyXFont const & font, bool toggleall)
 {
        if (bv->available()) { 
                if (bv->theLockingInset()) {
-                       bv->theLockingInset()->SetFont(bv, font, toggleall);
+                       bv->theLockingInset()->setFont(bv, font, toggleall);
                        return;
                }
                LyXText * text = bv->getLyXText();