]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlNote.C
fix crash due to invalidated iterator
[lyx.git] / src / frontends / controllers / ControlNote.C
index 6f22c819bc5672f1b506b7ed166985c585f774cb..3d2bd460beeb8bc27f3b449b950ffaa9d6ba0556 100644 (file)
 #include "gettext.h"
 
 
-using std::vector;
 using std::string;
 
+namespace lyx {
+namespace frontend {
 
 ControlNote::ControlNote(Dialog & parent)
        : Dialog::Controller(parent)
@@ -43,17 +44,8 @@ void ControlNote::clearParams()
 void ControlNote::dispatchParams()
 {
        string const lfun = InsetNoteMailer::params2string(params());
-       kernel().dispatch(FuncRequest(LFUN_INSET_APPLY, lfun));
+       kernel().dispatch(FuncRequest(getLfun(), lfun));
 }
 
-
-void note_gui_tokens(vector<string> & ids, vector<string> & gui_names)
-{
-       char const * const ids_[] = {"Note", "Comment", "Greyedout"};
-       size_t const ids_size = sizeof(ids_) / sizeof(char *);
-       ids = vector<string>(ids_, ids_ + ids_size);
-       gui_names.clear();
-       gui_names.push_back(_("LyX Note"));
-       gui_names.push_back(_("Comment"));
-       gui_names.push_back(_("Greyed Out"));
-}
+} // namespace frontend
+} // namespace lyx