]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/Menubar_pimpl.C
Get rid of the static_casts.
[lyx.git] / src / frontends / qt2 / Menubar_pimpl.C
index 54aa3b6ccccfa30e574254c1488f396b8d78e5a3..517a4bdb516982dc9dea79f4d2cbeb5f4dd3a789 100644 (file)
@@ -52,6 +52,10 @@ Menubar::Pimpl::Pimpl(LyXView * view, MenuBackend const & mbe)
 }
 
 
+Menubar::Pimpl::~Pimpl()
+{}
+
+
 void Menubar::Pimpl::openByName(string const & name)
 {
        NameMap::const_iterator const cit = name_map_.find(name);
@@ -61,3 +65,19 @@ void Menubar::Pimpl::openByName(string const & name)
        // this will have to do I'm afraid.
        cit->second->exec(QCursor::pos());
 }
+
+
+void Menubar::Pimpl::update()
+{}
+
+
+QtView * Menubar::Pimpl::view()
+{
+       return owner_;
+}
+
+
+MenuBackend const & Menubar::Pimpl::backend()
+{
+       return menubackend_;
+}