summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-03-21 19:06:44 +0100
committerFridrich Strba <fridrich@documentfoundation.org>2013-03-24 14:49:52 +0000
commit7f4a34e3145673681c0ff3aee8de8c440e790ece (patch)
treeb8d14e5656961ff9a286858c91ebf8a4fad22387 /basic
parent379988085239fdd93dd87870bcc4966aeaa9b396 (diff)
basic: Remove non working AboutStarBasic
The content of this function was commented out since the first import. So as it does nothing remove it. Change-Id: Ia46674f7bdc12e80d61a8142697e875f5c58f482 Reviewed-on: https://gerrit.libreoffice.org/2899 Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com> Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'basic')
-rw-r--r--basic/source/runtime/methods.cxx7
-rw-r--r--basic/source/runtime/rtlproto.hxx1
-rw-r--r--basic/source/runtime/stdobj.cxx2
3 files changed, 0 insertions, 10 deletions
diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx
index fefb9d941d09..a7ad6d56e5b4 100644
--- a/basic/source/runtime/methods.cxx
+++ b/basic/source/runtime/methods.cxx
@@ -4341,13 +4341,6 @@ RTLFUNC(SavePicture)
//-----------------------------------------------------------------------------------------
-RTLFUNC(AboutStarBasic)
-{
- (void)pBasic;
- (void)bWrite;
- (void)rPar;
-}
-
RTLFUNC(MsgBox)
{
(void)pBasic;
diff --git a/basic/source/runtime/rtlproto.hxx b/basic/source/runtime/rtlproto.hxx
index b13d664a625d..ccf0a3ba62ce 100644
--- a/basic/source/runtime/rtlproto.hxx
+++ b/basic/source/runtime/rtlproto.hxx
@@ -275,7 +275,6 @@ extern RTLFUNC(Beep);
extern RTLFUNC(Load);
extern RTLFUNC(Unload);
-extern RTLFUNC(AboutStarBasic);
extern RTLFUNC(LoadPicture);
extern RTLFUNC(SavePicture);
diff --git a/basic/source/runtime/stdobj.cxx b/basic/source/runtime/stdobj.cxx
index 2a69f445d513..1e882c244f50 100644
--- a/basic/source/runtime/stdobj.cxx
+++ b/basic/source/runtime/stdobj.cxx
@@ -80,8 +80,6 @@ struct StringHashCode
static Methods aMethods[] = {
-{ "AboutStarBasic", SbxNULL, 1 | _FUNCTION, RTLNAME(AboutStarBasic),0 },
- { "Name", SbxSTRING, 0,NULL,0 },
{ "Abs", SbxDOUBLE, 1 | _FUNCTION, RTLNAME(Abs),0 },
{ "number", SbxDOUBLE, 0,NULL,0 },
{ "Array", SbxOBJECT, _FUNCTION, RTLNAME(Array),0 },