mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
c8974fe9d3
commit
9cef6c9d3f
@ -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
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user