diff options
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/basdoc.cxx | 9 | ||||
-rw-r--r-- | basctl/source/basicide/basdoc.hxx | 5 |
2 files changed, 9 insertions, 5 deletions
diff --git a/basctl/source/basicide/basdoc.cxx b/basctl/source/basicide/basdoc.cxx index cb1cde5b1a87..4dd0dbd2aeca 100644 --- a/basctl/source/basicide/basdoc.cxx +++ b/basctl/source/basicide/basdoc.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: basdoc.cxx,v $ - * $Revision: 1.22 $ + * $Revision: 1.21.22.2 $ * * This file is part of OpenOffice.org. * @@ -126,8 +126,11 @@ void BasicDocShell::FillStatusBar( StatusBar& rStatusBar ) } -void BasicDocShell::FillClass( SvGlobalName*, sal_uInt32*, String*, String*, String*, sal_Int32) const -{} +void BasicDocShell::FillClass( SvGlobalName*, sal_uInt32*, String*, String*, String*, sal_Int32, sal_Bool bTemplate) const +{ + (void)bTemplate; + DBG_ASSERT( bTemplate == sal_False, "No template for Basic" ); +} void BasicDocShell::Draw( OutputDevice *, const JobSetup &, USHORT ) {} diff --git a/basctl/source/basicide/basdoc.hxx b/basctl/source/basicide/basdoc.hxx index 4f59ad7672a9..a589ef700b33 100644 --- a/basctl/source/basicide/basdoc.hxx +++ b/basctl/source/basicide/basdoc.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: basdoc.hxx,v $ - * $Revision: 1.9 $ + * $Revision: 1.8.22.2 $ * * This file is part of OpenOffice.org. * @@ -50,7 +50,8 @@ protected: String * pAppName, String * pFullTypeName, String * pShortTypeName, - sal_Int32 nVersion ) const; + sal_Int32 nVersion, + sal_Bool bTemplate = sal_False ) const; public: TYPEINFO(); |