Seems relatively straight forward. Comments ?

regards
john


Index: insets/insetcite.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/insets/insetcite.C,v
retrieving revision 1.53
diff -u -p -r1.53 insetcite.C
--- insets/insetcite.C  26 May 2003 09:13:53 -0000      1.53
+++ insets/insetcite.C  28 May 2003 03:53:14 -0000
@@ -334,7 +334,7 @@ dispatch_result InsetCitation::localDisp
                        break;
 
                default:
-                       return UNDISPATCHED;
+                       return InsetCommand::localDispatch(cmd);
        }
        return DISPATCHED;
 }
Index: insets/insetinclude.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/insets/insetinclude.C,v
retrieving revision 1.117
diff -u -p -r1.117 insetinclude.C
--- insets/insetinclude.C       26 May 2003 09:13:53 -0000      1.117
+++ insets/insetinclude.C       28 May 2003 03:53:16 -0000
@@ -136,7 +136,7 @@ dispatch_result InsetInclude::localDispa
                return DISPATCHED;
 
        default:
-               return UNDISPATCHED;
+               return InsetButton::localDispatch(cmd);
        }
 }
 
Index: insets/insetindex.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/insets/insetindex.C,v
retrieving revision 1.40
diff -u -p -r1.40 insetindex.C
--- insets/insetindex.C 26 May 2003 09:13:53 -0000      1.40
+++ insets/insetindex.C 28 May 2003 03:53:16 -0000
@@ -52,7 +52,7 @@ dispatch_result InsetIndex::localDispatc
                        return DISPATCHED;
 
                default:
-                       return UNDISPATCHED;
+                       return InsetCommand::localDispatch(cmd);
        }
 }
 
Index: insets/insetparent.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/insets/insetparent.C,v
retrieving revision 1.50
diff -u -p -r1.50 insetparent.C
--- insets/insetparent.C        26 May 2003 09:13:53 -0000      1.50
+++ insets/insetparent.C        28 May 2003 03:53:16 -0000
@@ -56,7 +56,7 @@ dispatch_result InsetParent::localDispat
                        cmd.view()->owner()->dispatch(FuncRequest(LFUN_CHILDOPEN, 
getContents()));
                        return DISPATCHED;
                default:
-                       return UNDISPATCHED;
+                       return InsetCommand::localDispatch(cmd);
        }
 }
 
Index: insets/insetref.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/insets/insetref.C,v
retrieving revision 1.64
diff -u -p -r1.64 insetref.C
--- insets/insetref.C   26 May 2003 09:13:53 -0000      1.64
+++ insets/insetref.C   28 May 2003 03:53:16 -0000
@@ -52,7 +52,7 @@ dispatch_result InsetRef::localDispatch(
                return DISPATCHED;
 
        default:
-               return UNDISPATCHED;
+               return InsetCommand::localDispatch(cmd);
        }
 }
 
Index: insets/insettoc.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/insets/insettoc.C,v
retrieving revision 1.43
diff -u -p -r1.43 insettoc.C
--- insets/insettoc.C   26 May 2003 09:13:54 -0000      1.43
+++ insets/insettoc.C   28 May 2003 03:53:22 -0000
@@ -66,7 +66,7 @@ dispatch_result InsetTOC::localDispatch(
                InsetCommandMailer("toc", *this).showDialog(cmd.view());
                return DISPATCHED;
        default:
-               return UNDISPATCHED;
+               return InsetCommand::localDispatch(cmd);
        }
 }
 

Reply via email to