summaryrefslogtreecommitdiff
path: root/uui/source/fltdlg.cxx
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-25 22:48:34 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-26 03:45:29 -0600
commitc4399bcd13cbe1cfa89c782e6667906c0b8bbb89 (patch)
tree3691b0e8387a6cc1600b5e1ffcced3d904918693 /uui/source/fltdlg.cxx
parentf993a8930a660b23f099c91a6dc636fb4cbe6f87 (diff)
Remove visual noise from uui
Change-Id: I64fa42929aad00fc63f2937527dd3539f9d6f7f3 Reviewed-on: https://gerrit.libreoffice.org/8337 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'uui/source/fltdlg.cxx')
-rw-r--r--uui/source/fltdlg.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/uui/source/fltdlg.cxx b/uui/source/fltdlg.cxx
index 137cd8accb27..ffc3973e2a2b 100644
--- a/uui/source/fltdlg.cxx
+++ b/uui/source/fltdlg.cxx
@@ -35,7 +35,7 @@
namespace uui
{
-/*-************************************************************************************************************//**
+/*-************************************************************************************************************
@short initialize filter dialog with start values
@descr We set some necessary information on these instance for later working and create internal structures.
After construction user should call "SetFilters()" and "SetURL()" to fill listbox with selectable filter
@@ -64,7 +64,7 @@ FilterDialog::FilterDialog( Window* pParentWindow ,
FreeResource();
}
-/*-************************************************************************************************************//**
+/*-************************************************************************************************************
@short set file name on dialog control
@descr We convert given URL (it must be an URL!) into valid file name and show it on our dialog.
@@ -82,7 +82,7 @@ void FilterDialog::SetURL( const OUString& sURL )
m_ftURL.SetText( impl_buildUIFileName(sURL) );
}
-/*-************************************************************************************************************//**
+/*-************************************************************************************************************
@short change list of filter names
@descr We save given pointer internal and use it to fill our listbox with given names.
Saved list pointer is used on method "AskForFilter()" too, to find user selected item
@@ -116,7 +116,7 @@ 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 sal_True as result, you can use out
@@ -159,7 +159,7 @@ bool FilterDialog::AskForFilter( FilterNameListPtr& pSelectedItem )
return bSelected;
}
-/*-************************************************************************************************************//**
+/*-************************************************************************************************************
@short helper class to calculate length of given string
@descr Instances of it can be used as callback for INetURLObject::getAbbreviated() method to build
short URLs to show it on GUI. We use in ctor set OutputDevice to call special VCL method ...
@@ -190,7 +190,7 @@ class StringCalculator : public ::cppu::WeakImplHelper1< ::com::sun::star::util:
const OutputDevice* m_pDevice;
};
-/*-************************************************************************************************************//**
+/*-************************************************************************************************************
@short try to build short name of given URL to show it n GUI
@descr We detect type of given URL automaticly and build this short name depend on this type ...
If we couldnt make it right we return full given string without any changes ...