summaryrefslogtreecommitdiffstats
path: root/include/basic
diff options
context:
space:
mode:
authorGergo Mocsi <gmocsi91@gmail.com>2013-08-19 13:53:38 +0200
committerGergo Mocsi <gmocsi91@gmail.com>2013-09-02 18:17:00 +0200
commit67596f4cc67cab14ccd3005be1f1c7c9ef6df557 (patch)
treed67f9e863da8157db459eed7443d7749d0d9390a /include/basic
parentGSOC work, small code fixes (diff)
downloadcore-67596f4cc67cab14ccd3005be1f1c7c9ef6df557.tar.gz
core-67596f4cc67cab14ccd3005be1f1c7c9ef6df557.zip
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
Diffstat (limited to 'include/basic')
-rw-r--r--include/basic/codecompletecache.hxx2
1 files changed, 1 insertions, 1 deletions
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();
};