]> git.lyx.org Git - features.git/commitdiff
Fix bug #6488: Avoid a null pointer when accessing documentBufferView when there...
authorVincent van Ravesteijn <vfr@lyx.org>
Wed, 10 Mar 2010 14:46:28 +0000 (14:46 +0000)
committerVincent van Ravesteijn <vfr@lyx.org>
Wed, 10 Mar 2010 14:46:28 +0000 (14:46 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33692 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiView.cpp

index a2a5eaf746e02d45572a65d95fe2ce6559ce45d1..89e439e029a8e83691ed60cf5bfc85ff122e186b 100644 (file)
@@ -1237,9 +1237,9 @@ void GuiView::disconnectBufferView()
 
 void GuiView::errors(string const & error_type, bool from_master)
 {
-       ErrorList & el = from_master ? 
-               documentBufferView()->buffer().masterBuffer()->errorList(error_type)
-               : documentBufferView()->buffer().errorList(error_type);
+       ErrorList & el = from_master ?
+               currentBufferView()->buffer().masterBuffer()->errorList(error_type)
+               : currentBufferView()->buffer().errorList(error_type);
        string data = error_type;
        if (from_master)
                data = "from_master|" + error_type;