summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorTino Rachui <tra@openoffice.org>2002-03-27 09:35:59 +0000
committerTino Rachui <tra@openoffice.org>2002-03-27 09:35:59 +0000
commitd9ea464140d08ccfd0af74d5ae276ba116948242 (patch)
tree13611e4370f7be0ea59a95e90e0e7c5cc8b5fc35 /fpicker
parent66f60c2b441c92633b9c8896d40d873967699bc5 (diff)
#89491#check for Windows 2000 platform in InitialSetDefaultName
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/win32/filepicker/WinFileOpenImpl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/fpicker/source/win32/filepicker/WinFileOpenImpl.cxx b/fpicker/source/win32/filepicker/WinFileOpenImpl.cxx
index b4e95d754b68..0d59f35ad1b9 100644
--- a/fpicker/source/win32/filepicker/WinFileOpenImpl.cxx
+++ b/fpicker/source/win32/filepicker/WinFileOpenImpl.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: WinFileOpenImpl.cxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: tra $ $Date: 2002-03-21 07:37:13 $
+ * last change: $Author: tra $ $Date: 2002-03-27 10:35:59 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1025,7 +1025,7 @@ void SAL_CALL CWinFileOpenImpl::InitialSetDefaultName()
// of an edit field for the file name edit field
// the control id of this box is cmb13 and not
// edt1 as before so we must use this id
- if (IsWindows2000())
+ if (IsWindows2000Platform())
edt1Id = cmb13;
HWND hwndEdt1 = GetDlgItem(m_hwndFileOpenDlg, edt1Id);