]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseturl.C
Final touch 'inset display()'; fix 'is a bit silly' bug
[lyx.git] / src / insets / inseturl.C
index 5fcd8ef1c1ea50bc90db2e7e20db5de48d1775f5..13a25dd3fa7d8a095cdee4b30a71e6bf0022ae4d 100644 (file)
@@ -43,14 +43,16 @@ InsetUrl::~InsetUrl()
 }
 
 
-dispatch_result InsetUrl::localDispatch(FuncRequest const & cmd)
+dispatch_result
+InsetUrl::priv_dispatch(FuncRequest const & cmd,
+                       idx_type & idx, pos_type & pos)
 {
        switch (cmd.action) {
                case LFUN_INSET_EDIT:
                        InsetCommandMailer("url", *this).showDialog(cmd.view());
                        return DISPATCHED;
                default:
-                       return InsetCommand::localDispatch(cmd);
+                       return InsetCommand::priv_dispatch(cmd, idx, pos);
        }
 }