]> git.lyx.org Git - features.git/commitdiff
Squash MSVC warning about a class declared as 'class' being defined
authorAngus Leeming <leeming@lyx.org>
Tue, 15 Feb 2005 10:17:56 +0000 (10:17 +0000)
committerAngus Leeming <leeming@lyx.org>
Tue, 15 Feb 2005 10:17:56 +0000 (10:17 +0000)
as 'struct'.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9630 a592a061-630c-0410-9148-cb99ea01b6c8

src/graphics/ChangeLog
src/graphics/GraphicsLoader.C

index b202c4ac1ae317d84646863b046dbbf7362881a9..3e21eb833f9855d89be1c126d3de25cbc8b605b1 100644 (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
index 8ee41b641af862d781e0e19b3620c30567fdaf2c..bea847426a961b48801a6ea18cdfba1af9c67122 100644 (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();