From 67596f4cc67cab14ccd3005be1f1c7c9ef6df557 Mon Sep 17 00:00:00 2001 From: Gergo Mocsi Date: Mon, 19 Aug 2013 13:53:38 +0200 Subject: GSOC work, autocorrect procedures+variables Fixed some small issue with the right arrow key in the ListBox. Autocorrection now correct all variable types and procedure names. Change-Id: Iff1abaf10c621aef04772837faa272bb6f987e37 --- include/basic/codecompletecache.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/basic') diff --git a/include/basic/codecompletecache.hxx b/include/basic/codecompletecache.hxx index d455fa75ec52..e85b0d8b599c 100644 --- a/include/basic/codecompletecache.hxx +++ b/include/basic/codecompletecache.hxx @@ -93,7 +93,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 ) const; - OUString GetCorrectCaseVarName( const OUString& sVarName ) const; + OUString GetCorrectCaseVarName( const OUString& sVarName, const OUString& sActProcName ) const; void print() const; // wrapper for operator<<, prints to std::cerr void Clear(); }; -- cgit