]> git.lyx.org Git - features.git/blobdiff - src/LyX.cpp
Auto feature for minibuffer toolbar
[features.git] / src / LyX.cpp
index c3d84b22f614d2c636cd18a1990313d679e15386..b4c02168c8ed36f1d539d1030863eb6398245058 100644 (file)
@@ -1386,7 +1386,7 @@ FuncStatus getStatus(FuncRequest const & action)
 }
 
 
-void dispatch(FuncRequest const & action)
+DispatchResult const & dispatch(FuncRequest const & action)
 {
        LAPPERR(theApp());
        return theApp()->dispatch(action);
@@ -1396,7 +1396,7 @@ void dispatch(FuncRequest const & action)
 void dispatch(FuncRequest const & action, DispatchResult & dr)
 {
        LAPPERR(theApp());
-       return theApp()->dispatch(action, dr);
+       theApp()->dispatch(action, dr);
 }