diff options
Diffstat (limited to 'basic/source/inc')
-rw-r--r-- | basic/source/inc/filefmt.hxx | 6 | ||||
-rw-r--r-- | basic/source/inc/image.hxx | 2 | ||||
-rw-r--r-- | basic/source/inc/sbjsmod.hxx | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/basic/source/inc/filefmt.hxx b/basic/source/inc/filefmt.hxx index 25ba647ad743..b04b7abc6a9b 100644 --- a/basic/source/inc/filefmt.hxx +++ b/basic/source/inc/filefmt.hxx @@ -45,9 +45,9 @@ // new integer type suffix 'b') // -#define B_LEGACYVERSION 0x00000011 -#define B_EXT_IMG_VERSION 0x00000012 -#define B_CURVERSION 0x00000013 +#define B_IMG_VERSION_11 0x00000011 +#define B_IMG_VERSION_12 0x00000012 +#define B_IMG_VERSION_13 0x00000013 // The file contains either a module- or a library-record. // Those records contain further records. Every record's got diff --git a/basic/source/inc/image.hxx b/basic/source/inc/image.hxx index f89776af09b9..2e442398a214 100644 --- a/basic/source/inc/image.hxx +++ b/basic/source/inc/image.hxx @@ -79,7 +79,7 @@ public: bool Load( SvStream&, sal_uInt32& nVer ); // nVer is set to version // of image - bool Save( SvStream&, sal_uInt32 = B_CURVERSION ); + bool Save( SvStream&, sal_uInt32 ); bool IsError() const { return bError; } const sal_uInt8* GetCode() const { return aCode.data(); } diff --git a/basic/source/inc/sbjsmod.hxx b/basic/source/inc/sbjsmod.hxx index 128c0e243e95..4f8584ff08e5 100644 --- a/basic/source/inc/sbjsmod.hxx +++ b/basic/source/inc/sbjsmod.hxx @@ -28,7 +28,7 @@ class SbJScriptModule final : public SbModule { virtual bool LoadData(SvStream&, sal_uInt16) override; - virtual bool StoreData(SvStream&) const override; + virtual std::pair<bool, sal_uInt32> StoreData(SvStream&) const override; public: SBX_DECL_PERSIST_NODATA(SBXID_JSCRIPTMOD, 1); |