diff options
author | Andrzej Hunt <andrzej.hunt@collabora.com> | 2014-04-19 11:42:47 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2014-04-30 14:57:05 +0200 |
commit | dc9ad09707468f4ca2067e4549053e3e4f331dee (patch) | |
tree | 4d9a97071a5e9ba3e784245d70c2a83a7ac0d8be /sfx2 | |
parent | b5f89e04c3fcdd4217f962e8d3644e8235591264 (diff) |
fdo#72006 Populate "Load URL" dropdown from picklist.
f7feb4227d83f4f095597a44826277aaae2bc0df stopped any newly opened documents
from being added to the "History" list (and instead adds them to the picklist),
since the history list is not used anywhere else, and since the picklist performs
an equivalent function, it makes most sense just to use the picklist to populate
the list of URLs.
Change-Id: I5a06e7fefe3dc1fbe266f3191de4fbac03601858
Reviewed-on: https://gerrit.libreoffice.org/9104
Tested-by: Andrzej Hunt <andrzej.hunt@collabora.com>
Reviewed-by: Andrzej Hunt <andrzej.hunt@collabora.com>
(cherry picked from commit b8315b1c2f43ab44651e5089a63fb63e23a1ea73)
Reviewed-on: https://gerrit.libreoffice.org/9172
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/inet/inettbc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/inet/inettbc.cxx b/sfx2/source/inet/inettbc.cxx index 2f56911d4de5..297b4d20c913 100644 --- a/sfx2/source/inet/inettbc.cxx +++ b/sfx2/source/inet/inettbc.cxx @@ -219,7 +219,7 @@ void SfxURLToolBoxControl_Impl::StateChanged SvtURLBox* pURLBox = GetURLBox(); pURLBox->Clear(); - ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > > lList = SvtHistoryOptions().GetList(eHISTORY); + ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > > lList = SvtHistoryOptions().GetList(ePICKLIST); for (sal_Int32 i=0; i<lList.getLength(); ++i) { ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > lProps = lList[i]; |