GSOC work menu entry + code fix

Fixed the definition of GLOB_KEY, NOT_FOUND from const to static const.
Added a new menu entry for code completition under View->Enable Code Completition.

Change-Id: If8ac25ee43a7ba780ccdee2e5e909777115a1f27
This commit is contained in:
Gergo Mocsi
2013-07-22 14:32:00 +02:00
parent 1b8b4864c1
commit 3ce1f554de
10 changed files with 53 additions and 9 deletions

View File

@@ -42,8 +42,8 @@ private:
CodeCompleteVarScopes aVarScopes;
public:
const OUString GLOB_KEY = OUString("global key");
const OUString NOT_FOUND = OUString("not found");
static const OUString GLOB_KEY;
static const OUString NOT_FOUND;
CodeCompleteDataCache(){}
virtual ~CodeCompleteDataCache(){}