Squash MSVC warning about a class declared as 'class' being defined

as 'struct'.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9630 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2005-02-15 10:17:56 +00:00
parent c8974fe9d3
commit 9cef6c9d3f
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2005-02-15 Angus Leeming <leeming@lyx.org>
* GraphicsLoader.C: s/struct/class/ in definition of
lyx::graphics::Loader::Impl to silence MSVC warning:
"type name first seen using 'class' now seen using 'struct'".
2005-01-27 Lars Gullik Bjonnes <larsbj@gullik.net>
* PreviewLoader.C (Impl): use convert<> instead of atoi,strToXXX

View File

@ -26,7 +26,7 @@ using std::string;
namespace lyx {
namespace graphics {
struct Loader::Impl : boost::signals::trackable {
class Loader::Impl : public boost::signals::trackable {
public:
///
Impl();