From 59055f24cb3dee9ffa21f11fc77ef0cd252b8858 Mon Sep 17 00:00:00 2001 From: Gergo Mocsi Date: Mon, 29 Jul 2013 16:08:13 +0200 Subject: GSOC work, nested reflection fix - again Fixed the issue when an invalid method was typed, listbox showed tha methods of the base variable. Change-Id: I88576645b373e76112103055d547f713af1fc153 --- include/basic/codecompletecache.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/basic/codecompletecache.hxx b/include/basic/codecompletecache.hxx index 520629926681..c12139b71bbd 100644 --- a/include/basic/codecompletecache.hxx +++ b/include/basic/codecompletecache.hxx @@ -99,7 +99,7 @@ public: void InsertGlobalVar( const OUString& sVarName, const OUString& sVarType ); void InsertLocalVar( const OUString& sProcName, const OUString& sVarName, const OUString& sVarType ); - OUString GetVarType( const OUString& sVarName ); + OUString GetVarType( const OUString& sVarName ) const; void print() const; // wrapper for operator<<, prints to std::cerr void Clear(); }; -- cgit