diff options
author | Gergo Mocsi <gmocsi91@gmail.com> | 2013-07-24 17:27:02 +0200 |
---|---|---|
committer | Gergo Mocsi <gmocsi91@gmail.com> | 2013-09-02 18:16:48 +0200 |
commit | edcec5b1be9b224dbdfb4cd85c37148243f49389 (patch) | |
tree | 50a8afdb188079d03396df1dabbc43e1d1ec4b85 /include/basic/sbmod.hxx | |
parent | 70ab744ccf047a90bee0506c6a60ade1935ece3d (diff) |
GSOC work, cache implementation fix, code fixes
The CodeCompleteDataCache got a new implementation: global variables are stored separately.
The "static const" OUString-s were removed from the class.
Data extraction is only done when pressing the dot key.
Change-Id: I3ff94c0c6eabe328761336d4c74744eb7efc6056
Diffstat (limited to 'include/basic/sbmod.hxx')
-rw-r--r-- | include/basic/sbmod.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/basic/sbmod.hxx b/include/basic/sbmod.hxx index 5a77cfb9dd2d..b3e694bf624c 100644 --- a/include/basic/sbmod.hxx +++ b/include/basic/sbmod.hxx @@ -152,7 +152,8 @@ public: void RemoveVars(); ::com::sun::star::uno::Reference< ::com::sun::star::script::XInvocation > GetUnoModule(); bool createCOMWrapperForIface( ::com::sun::star::uno::Any& o_rRetAny, SbClassModuleObject* pProxyClassModuleObject ); - CodeCompleteDataCache GetCodeCompleteDataFromParse(); + //CodeCompleteDataCache GetCodeCompleteDataFromParse(); + void GetCodeCompleteDataFromParse(CodeCompleteDataCache& aCache); SbxArrayRef GetMethods(); }; |