#84111# allow number formats to be removed

This commit is contained in:
Frank Schönheit
2001-02-20 07:49:56 +00:00
parent 8a92f0fc13
commit cc3a0eb522

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: formcontroller.cxx,v $ * $RCSfile: formcontroller.cxx,v $
* *
* $Revision: 1.8 $ * $Revision: 1.9 $
* *
* last change: $Author: fs $ $Date: 2001-02-13 16:27:08 $ * last change: $Author: fs $ $Date: 2001-02-20 08:49:56 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -763,13 +763,23 @@ namespace pcr
SfxSingleTabDialog* pDlg = new SfxSingleTabDialog(GetpApp()->GetAppWindow(), aCoreSet, 0); SfxSingleTabDialog* pDlg = new SfxSingleTabDialog(GetpApp()->GetAppWindow(), aCoreSet, 0);
SvxNumberFormatTabPage* pPage = (SvxNumberFormatTabPage*) SvxNumberFormatTabPage::Create(pDlg, aCoreSet); SvxNumberFormatTabPage* pPage = (SvxNumberFormatTabPage*) SvxNumberFormatTabPage::Create(pDlg, aCoreSet);
const SfxPoolItem& rInfoItem = pPage->GetItemSet().Get(SID_ATTR_NUMBERFORMAT_INFO); const SfxPoolItem& rInfoItem = pPage->GetItemSet().Get(SID_ATTR_NUMBERFORMAT_INFO);
pPage->SetNumberFormatList((const SvxNumberInfoItem&)rInfoItem );
pDlg->SetTabPage(pPage); pDlg->SetTabPage(pPage);
if (RET_OK == pDlg->Execute()) if (RET_OK == pDlg->Execute())
{ {
const SfxItemSet* pResult = pDlg->GetOutputItemSet(); const SfxItemSet* pResult = pDlg->GetOutputItemSet();
const SfxPoolItem* pItem;
const SfxPoolItem* pItem = pResult->GetItem( SID_ATTR_NUMBERFORMAT_INFO );
const SvxNumberInfoItem* pInfoItem = static_cast<const SvxNumberInfoItem*>(pItem);
if (pInfoItem && pInfoItem->GetDelCount())
{
const sal_uInt32* pDeletedKeys = pInfoItem->GetDelArray();
for (sal_uInt16 i=0; i< pInfoItem->GetDelCount(); ++i, ++pDeletedKeys)
pFormatter->DeleteEntry(*pDeletedKeys);
}
pItem = NULL;
if (SFX_ITEM_SET == pResult->GetItemState(SID_ATTR_NUMBERFORMAT_VALUE, sal_False, &pItem)) if (SFX_ITEM_SET == pResult->GetItemState(SID_ATTR_NUMBERFORMAT_VALUE, sal_False, &pItem))
Commit(_rName, ::rtl::OUString::valueOf((sal_Int32)((SfxUInt32Item*)pItem)->GetValue()), pSupplier); Commit(_rName, ::rtl::OUString::valueOf((sal_Int32)((SfxUInt32Item*)pItem)->GetValue()), pSupplier);
} }
@@ -2517,6 +2527,9 @@ namespace pcr
/************************************************************************* /*************************************************************************
* history: * history:
* $Log: not supported by cvs2svn $ * $Log: not supported by cvs2svn $
* Revision 1.8 2001/02/13 16:27:08 fs
* #83848# no multiline input for 'DefaultText' of FileControl / #83655# -1 as minimum for MaxTextLength
*
* Revision 1.7 2001/02/06 10:21:19 fs * Revision 1.7 2001/02/06 10:21:19 fs
* #83527# set the minimum for the BoundField property to 1 * #83527# set the minimum for the BoundField property to 1
* *