diff options
author | Mikhail Voytenko <mav@openoffice.org> | 2011-01-14 11:20:36 +0100 |
---|---|---|
committer | Mikhail Voytenko <mav@openoffice.org> | 2011-01-14 11:20:36 +0100 |
commit | 94eae11e9ee5956df320078b759ad86459df6694 (patch) | |
tree | 79be8f1eabd869312597cda3d8e9669c101db0f3 /fpicker/source/office | |
parent | 94fc32ce8479bf308e3bfda1b97727a2b9b98f1b (diff) |
removetooltypes01: #i112600# fix TRUE/FALSE autodoc tags
Diffstat (limited to 'fpicker/source/office')
-rw-r--r-- | fpicker/source/office/OfficeControlAccess.hxx | 2 | ||||
-rw-r--r-- | fpicker/source/office/commonpicker.hxx | 2 | ||||
-rw-r--r-- | fpicker/source/office/iodlg.cxx | 4 | ||||
-rw-r--r-- | fpicker/source/office/iodlg.hxx | 12 |
4 files changed, 10 insertions, 10 deletions
diff --git a/fpicker/source/office/OfficeControlAccess.hxx b/fpicker/source/office/OfficeControlAccess.hxx index 739b9211a09f..35196907f900 100644 --- a/fpicker/source/office/OfficeControlAccess.hxx +++ b/fpicker/source/office/OfficeControlAccess.hxx @@ -92,7 +92,7 @@ namespace svt @param _rValue the value to set @param _bIgnoreIllegalArgument - if <sal_False/>, an exception will be thrown if the given value is of improper type + if <FALSE/>, an exception will be thrown if the given value is of improper type */ void implSetControlProperty( sal_Int16 _nControlId, diff --git a/fpicker/source/office/commonpicker.hxx b/fpicker/source/office/commonpicker.hxx index fd6d952fbe2f..2531f5e7f4c5 100644 --- a/fpicker/source/office/commonpicker.hxx +++ b/fpicker/source/office/commonpicker.hxx @@ -188,7 +188,7 @@ namespace svt /** handle a single argument from the XInitialization::initialize method - @return <sal_True/> if the argument could be handled + @return <TRUE/> if the argument could be handled */ virtual sal_Bool implHandleInitializationArgument( const ::rtl::OUString& _rName, diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx index 3c015ca95b26..355203dbe767 100644 --- a/fpicker/source/office/iodlg.cxx +++ b/fpicker/source/office/iodlg.cxx @@ -392,7 +392,7 @@ namespace // ----------------------------------------------------------------------- /** retrieves the value of an environment variable - @return <sal_True/> if and only if the retrieved string value is not empty + @return <TRUE/> if and only if the retrieved string value is not empty */ bool getEnvironmentValue( const sal_Char* _pAsciiEnvName, ::rtl::OUString& _rValue ) { @@ -900,7 +900,7 @@ sal_Bool SvtFileDialog::createNewUserFilter( const String& _rNewFilter, sal_Bool // 05.12.2001 - 95486 - fs@openoffice.org // now, the default extension is set to the one of the user filter (or empty) - // if the former is not allowed (_bAllowUserDefExt = <sal_False/>), we have to use the ext of the current filter + // if the former is not allowed (_bAllowUserDefExt = <FALSE/>), we have to use the ext of the current filter // (if possible) sal_Bool bUseCurFilterExt = sal_True; String sUserFilter = _pImp->_pUserFilter->GetType(); diff --git a/fpicker/source/office/iodlg.hxx b/fpicker/source/office/iodlg.hxx index 3cc06453f11f..746a6e1d207a 100644 --- a/fpicker/source/office/iodlg.hxx +++ b/fpicker/source/office/iodlg.hxx @@ -142,7 +142,7 @@ private: @param _bMultiExt allow for filters with more than one extension pattern @param _rFilterChanged - set to <sal_True/> if the filter changed + set to <TRUE/> if the filter changed @return the filter which has been found */ @@ -303,7 +303,7 @@ public: only certain URLs can be browsed. This method checks whether a given URL belongs to this set of permitted URLs.</p> - <p>If no "access restriction" is effective, this method always returns <sal_True/>.</p> + <p>If no "access restriction" is effective, this method always returns <TRUE/>.</p> */ inline bool isUrlAllowed( const String& _rURL ) const { return m_aURLFilter.isUrlAllowed( _rURL ); } @@ -313,16 +313,16 @@ private: /** updates _pUserFilter with a new filter <p>No checks for necessity are made.</p> @param _bAllowUserDefExt - set to <sal_True/> if a filter like "*.txt" should reset the DefaultExtension to doc. + set to <TRUE/> if a filter like "*.txt" should reset the DefaultExtension to doc. <p> In a file-save-dialog this would have the following effect:<br/> Say that auto-extension is checked, and the user enters *.txt, while a non-txt filter is selected.<br/> - If _bAllowUserDefExt is set to <sal_True/>, then a user input of "foo" would save a foo.txt, but in a format + If _bAllowUserDefExt is set to <TRUE/>, then a user input of "foo" would save a foo.txt, but in a format which is determined by the filter selected (which is no txt file as said above).<br/> - If _bAllowUserDefExt is set to <sal_False/>, the default extension will be the one of the selected filter, means + If _bAllowUserDefExt is set to <FALSE/>, the default extension will be the one of the selected filter, means in the above scenario a file "foo.<ext>" will be saved where ext is the extension of the selected filter. </p> - @return <sal_True/> if the new filter is "*.*" + @return <TRUE/> if the new filter is "*.*" */ sal_Bool createNewUserFilter( const String& _rNewFilter, sal_Bool _bAllowUserDefExt ); |