mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
forgot those
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21708 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
4c3e546375
commit
e5fe3a68c7
@ -42,11 +42,9 @@ namespace lyx {
|
||||
namespace graphics {
|
||||
|
||||
/// Access to this class is through this static method.
|
||||
Image::ImagePtr GuiImage::newImage()
|
||||
Image * GuiImage::newImage()
|
||||
{
|
||||
ImagePtr ptr;
|
||||
ptr.reset(new GuiImage);
|
||||
return ptr;
|
||||
return new GuiImage;
|
||||
}
|
||||
|
||||
|
||||
|
@ -25,7 +25,7 @@ class GuiImage : public Image
|
||||
{
|
||||
public:
|
||||
/// Access to this class is through this static method.
|
||||
static ImagePtr newImage();
|
||||
static Image * newImage();
|
||||
|
||||
/// Return the list of loadable formats.
|
||||
static FormatList loadableFormats();
|
||||
|
Loading…
Reference in New Issue
Block a user