From 790a7aff12eb37c76484026bd77915cef3de98d4 Mon Sep 17 00:00:00 2001 From: Gergo Mocsi Date: Thu, 1 Aug 2013 13:59:10 +0200 Subject: GSOC work, renaming for consistency Menu enrty was renamed to IDE Options under View. SID_BASICIDE_CODECOMPLETE was renamed to SID_BASICIDE_IDEOPTIONS. CodeCompleteDlg was rename to BasicIDEOptionDlg. Ui file was renamed to basicideoptionsdialog.ui. Checkbox for extended types is now independent from code complete one. Change-Id: Id862df0ee56cdf2aa81e19a34099fe679ad5d311 --- include/basic/codecompletecache.hxx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'include/basic') diff --git a/include/basic/codecompletecache.hxx b/include/basic/codecompletecache.hxx index 10c2f7335e91..a2186074fca2 100644 --- a/include/basic/codecompletecache.hxx +++ b/include/basic/codecompletecache.hxx @@ -45,7 +45,8 @@ private: bool bIsProcedureAutoCompleteOn; bool bIsAutoCloseQuotesOn; bool bIsAutoCloseParenthesisOn; - bool bIsAutoCorrectSpellingOn; + bool bIsAutoCorrectKeywordsOn; + bool bExtendedTypeDeclarationOn; SvtMiscOptions aMiscOptions; public: @@ -66,8 +67,8 @@ public: static bool IsAutoCloseParenthesisOn(); static void SetAutoCloseParenthesisOn( const bool& b ); - static bool IsAutoCorrectSpellingOn(); - static void SetAutoCorrectSpellingOn( const bool& b ); + static bool IsAutoCorrectKeywordsOn(); + static void SetAutoCorrectKeywordsOn( const bool& b ); }; class BASIC_DLLPUBLIC CodeCompleteDataCache -- cgit