From b3e4ba69b70a30bbcc32ac59ce90e2eda2bc76de Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 10 Sep 2020 21:23:13 +0200 Subject: convert IMAP_FORMAT to scoped enum Change-Id: I58090ced672267614ade2e3e81e6264d01b77901 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102405 Tested-by: Jenkins Reviewed-by: Noel Grandin --- include/vcl/imap.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/vcl/imap.hxx') diff --git a/include/vcl/imap.hxx b/include/vcl/imap.hxx index 5cf03071b22a..02d8f2ddf96b 100644 --- a/include/vcl/imap.hxx +++ b/include/vcl/imap.hxx @@ -58,7 +58,7 @@ private: static OUString ImpReadNCSAURL( const char** ppStr ); static Point ImpReadNCSACoords( const char** ppStr ); - static sal_uLong ImpDetectFormat( SvStream& rIStm ); + static IMapFormat ImpDetectFormat( SvStream& rIStm ); public: @@ -113,8 +113,8 @@ public: void Write ( SvStream& rOStm ) const; void Read( SvStream& rIStm ); - void Write( SvStream& rOStm, sal_uLong nFormat ) const; - sal_uLong Read( SvStream& rIStm, sal_uLong nFormat ); + void Write( SvStream& rOStm, IMapFormat nFormat ) const; + sal_uLong Read( SvStream& rIStm, IMapFormat nFormat ); }; class IMapCompat -- cgit