make struct Pimpl accessible in Menubar

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@925 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2000-07-26 12:38:16 +00:00
parent 8cac3597a4
commit d5cd17770d
2 changed files with 13 additions and 1 deletions

View File

@ -1,5 +1,17 @@
2000-07-26 Lars Gullik Bjønnes <larsbj@lyx.org>
* src/frontends/Menubar.h: make "struct Pimpl;" public + the
friend as per Angus's patch posted to lyx-devel.
* src/ext_l10n.h: updated
* src/frontends/xforms/Toolbar_pimpl.C (updateLayoutList): run
gettext on the style string right before inserting them into the
combox.
* autogen.sh: add code to extract style strings form layout files,
not good enough yet.
* src/frontends/gtk/.cvsignore: add MAKEFILE
* src/MenuBackend.C (read): run the label strings through gettext

View File

@ -41,9 +41,9 @@ public:
//I disable this temporarily until I find a nice way to make it work
//with compaq cxx. (Jean-Marc)
// Is this a new comment? (Lgb)
private:
struct Pimpl;
friend struct Pimpl;
private:
Pimpl * pimpl_;
};
#endif