diff options
author | Philipp Lohmann [pl] <Philipp.Lohmann@Oracle.COM> | 2011-02-14 16:17:22 +0100 |
---|---|---|
committer | Philipp Lohmann [pl] <Philipp.Lohmann@Oracle.COM> | 2011-02-14 16:17:22 +0100 |
commit | 1fb042333fe6287756ff1fac11d18cd7c150730d (patch) | |
tree | 595de5d187177832ce656d7832af9dce9dce2d99 /uui/source/fltdlg.cxx | |
parent | 5b3e910e926c7dd1e8dcfe8e0a5c6cb5bd17480a (diff) | |
parent | cd0d6a5a6775f197fdb7e78b54c8133074a7a236 (diff) |
rebase to DEV300_m100
Diffstat (limited to 'uui/source/fltdlg.cxx')
-rw-r--r-- | uui/source/fltdlg.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/uui/source/fltdlg.cxx b/uui/source/fltdlg.cxx index 4bda9fb9e579..55be2298abbd 100644 --- a/uui/source/fltdlg.cxx +++ b/uui/source/fltdlg.cxx @@ -140,15 +140,15 @@ void FilterDialog::ChangeFilters( const FilterNameList* pFilterNames ) /*-************************************************************************************************************//** @short ask user for his decision @descr We show the dialog and if user finish it with "OK" - we try to find selected item in internal saved - name list (which you must set in "ChangeFilters()"!). If we return TRUE as result, you can use out + name list (which you must set in "ChangeFilters()"!). If we return sal_True as result, you can use out parameter "pSelectedItem" as pointer into your FilterNameList to get selected item realy ... - but if we return FALSE ... user hsa cancel the dialog ... you shouldnt do that. pSelectedItem isnt + but if we return sal_False ... user hsa cancel the dialog ... you shouldnt do that. pSelectedItem isnt set to any valid value then. We don't change them ... @seealso method ChangeFilters() @param "pSelectedItem", returns result of selection as pointer into set list of filter names - (valid for function return TRUE only!) + (valid for function return sal_True only!) @return true => pSelectedItem parameter points into name list and represent use decision false => use has cancelled dialog (pSelectedItem isnt valid then!) |