diff options
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/win32/folderpicker/MtaFop.cxx | 4 | ||||
-rw-r--r-- | fpicker/source/win32/misc/resourceprovider.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/fpicker/source/win32/folderpicker/MtaFop.cxx b/fpicker/source/win32/folderpicker/MtaFop.cxx index 11b084f6e7a5..595711e9bb90 100644 --- a/fpicker/source/win32/folderpicker/MtaFop.cxx +++ b/fpicker/source/win32/folderpicker/MtaFop.cxx @@ -39,9 +39,9 @@ const bool INIT_NONSIGNALED = false; namespace { - const char* FOLDERPICKER_SRV_DLL_NAME = "fps.dll"; + const char* const FOLDERPICKER_SRV_DLL_NAME = "fps.dll"; const char g_szWndClsName[] = "FopStaReqWnd###"; - const char* CURRENT_INSTANCE = "CurrInst"; + const char* const CURRENT_INSTANCE = "CurrInst"; struct RequestContext { diff --git a/fpicker/source/win32/misc/resourceprovider.cxx b/fpicker/source/win32/misc/resourceprovider.cxx index ba47da275959..9360089c76ed 100644 --- a/fpicker/source/win32/misc/resourceprovider.cxx +++ b/fpicker/source/win32/misc/resourceprovider.cxx @@ -43,7 +43,7 @@ struct Entry sal_Int16 resId; }; -Entry CtrlIdToResIdTable[] = { +Entry const CtrlIdToResIdTable[] = { { CHECKBOX_AUTOEXTENSION, STR_SVT_FILEPICKER_AUTO_EXTENSION }, { CHECKBOX_PASSWORD, STR_SVT_FILEPICKER_PASSWORD }, { CHECKBOX_FILTEROPTIONS, STR_SVT_FILEPICKER_FILTER_OPTIONS }, |