[Libreoffice-commits] core.git: basic/source

Thomas Arnhold thomas at arnhold.org
Sun Mar 24 07:50:12 PDT 2013


 basic/source/runtime/methods.cxx  |    7 -------
 basic/source/runtime/rtlproto.hxx |    1 -
 basic/source/runtime/stdobj.cxx   |    2 --
 3 files changed, 10 deletions(-)

New commits:
commit 7f4a34e3145673681c0ff3aee8de8c440e790ece
Author: Thomas Arnhold <thomas at arnhold.org>
Date:   Thu Mar 21 19:06:44 2013 +0100

    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 at gmail.com>
    Reviewed-by: Fridrich Strba <fridrich at documentfoundation.org>
    Tested-by: Fridrich Strba <fridrich at documentfoundation.org>

diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx
index fefb9d9..a7ad6d5 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 b13d664..ccf0a3b 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 2a69f44..1e882c2 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           },


More information about the Libreoffice-commits mailing list