diff options
-rw-r--r-- | fpicker/source/win32/filepicker/FileOpenDlg.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fpicker/source/win32/filepicker/FileOpenDlg.cxx b/fpicker/source/win32/filepicker/FileOpenDlg.cxx index 6e4b24201504..924687980bd2 100644 --- a/fpicker/source/win32/filepicker/FileOpenDlg.cxx +++ b/fpicker/source/win32/filepicker/FileOpenDlg.cxx @@ -38,9 +38,9 @@ namespace /* private */ // OK button so that we determine the size of the text // currently in the edit field and resize our buffer // appropriately - in the future we will do this - const size_t MAX_FILENAME_BUFF_SIZE = 32000; - const size_t MAX_FILETITLE_BUFF_SIZE = 32000; - const size_t MAX_FILTER_BUFF_SIZE = 4096; + const sal_Int32 MAX_FILENAME_BUFF_SIZE = 32000; + const sal_Int32 MAX_FILETITLE_BUFF_SIZE = 32000; + const sal_Int32 MAX_FILTER_BUFF_SIZE = 4096; const LPCTSTR CURRENT_INSTANCE = TEXT("CurrInst"); |