summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorJoseph Powers <jpowers27@cox.net>2011-01-01 10:53:48 -0800
committerJoseph Powers <jpowers27@cox.net>2011-01-01 10:53:48 -0800
commit20c9277f3ad930d31c720e7a1ac0e623eaa55beb (patch)
tree66a9c832978bc658e14ee3065d5168cd1e933471 /sfx2
parenta407bbfe8c35a4791b688e375430e1eb2b54e17c (diff)
Remove DECLARE_LIST( TargetList, String* )
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/inc/sfx2/dinfdlg.hxx1
-rw-r--r--sfx2/inc/sfx2/frame.hxx3
-rw-r--r--sfx2/source/dialog/dinfdlg.cxx24
-rw-r--r--sfx2/source/view/frame.cxx10
4 files changed, 10 insertions, 28 deletions
diff --git a/sfx2/inc/sfx2/dinfdlg.hxx b/sfx2/inc/sfx2/dinfdlg.hxx
index 00ece44f64ee..2ee0e6ab67a4 100644
--- a/sfx2/inc/sfx2/dinfdlg.hxx
+++ b/sfx2/inc/sfx2/dinfdlg.hxx
@@ -254,7 +254,6 @@ public:
// class SfxInternetPage -------------------------------------------------
-class TargetList;
namespace sfx2
{
class FileDialogHelper;
diff --git a/sfx2/inc/sfx2/frame.hxx b/sfx2/inc/sfx2/frame.hxx
index ba16c26d84d7..40fb375fae9e 100644
--- a/sfx2/inc/sfx2/frame.hxx
+++ b/sfx2/inc/sfx2/frame.hxx
@@ -70,6 +70,7 @@ namespace com
#include <tools/list.hxx>
#include <svl/poolitem.hxx>
#include <comphelper/namedvaluecollection.hxx>
+#include <vector>
class SvBorder;
class SfxWorkWindow;
@@ -94,7 +95,7 @@ class SystemWindow;
typedef SfxFrame* SfxFramePtr;
class SfxFrameArr_Impl;
-DECLARE_LIST( TargetList, String* )
+typedef ::std::vector< String* > TargetList;
#define SFXFRAME_HASTITLE 0x0001
diff --git a/sfx2/source/dialog/dinfdlg.cxx b/sfx2/source/dialog/dinfdlg.cxx
index c578b30ecbef..166f80d8a23b 100644
--- a/sfx2/source/dialog/dinfdlg.cxx
+++ b/sfx2/source/dialog/dinfdlg.cxx
@@ -403,7 +403,6 @@ void SfxDocumentInfoItem::UpdateDocumentInfo(
i_xDocProps->setAutoloadURL(::rtl::OUString());
}
i_xDocProps->setDefaultTarget(getDefaultTarget());
-// i_xDocProps->setTemplateName(getTemplateName());
i_xDocProps->setAuthor(getAuthor());
i_xDocProps->setCreationDate(getCreationDate());
i_xDocProps->setModifiedBy(getModifiedBy());
@@ -978,20 +977,6 @@ BOOL SfxDocumentPage::FillItemSet( SfxItemSet& rSet )
SfxDocumentInfoItem* pInfoItem = (SfxDocumentInfoItem*)pItem;
BOOL bUseData = ( STATE_CHECK == aUseUserDataCB.GetState() );
pInfoItem->SetUseUserData( bUseData );
-/*
- if ( !bUseData )
- {
- // "Benutzerdaten verwenden" ausgeschaltet ->
- // den Benutzer aus den Stamps l"oschen
- String aEmptyUser;
- aInfo.SetCreated(
- SfxStamp( aEmptyUser, aInfo.GetCreated().GetTime() ) );
- aInfo.SetChanged(
- SfxStamp( aEmptyUser, aInfo.GetChanged().GetTime() ) );
- aInfo.SetPrinted(
- SfxStamp( aEmptyUser, aInfo.GetPrinted().GetTime() ) );
- }
-*/
rSet.Put( SfxDocumentInfoItem( *pInfoItem ) );
bRet = TRUE;
}
@@ -1127,12 +1112,10 @@ void SfxDocumentPage::Reset( const SfxItemSet& rSet )
aCreateValFt.SetText( ConvertDateTime_Impl( pInfoItem->getAuthor(),
pInfoItem->getCreationDate(), aLocaleWrapper ) );
util::DateTime aTime( pInfoItem->getModificationDate() );
-// if ( aTime.IsValid() )
if ( aTime.Month > 0 )
aChangeValFt.SetText( ConvertDateTime_Impl(
pInfoItem->getModifiedBy(), aTime, aLocaleWrapper ) );
aTime = pInfoItem->getPrintDate();
-// if ( aTime.IsValid())
if ( aTime.Month > 0 )
aPrintValFt.SetText( ConvertDateTime_Impl( pInfoItem->getPrintedBy(),
aTime, aLocaleWrapper ) );
@@ -1197,10 +1180,10 @@ SfxInternetPage::SfxInternetPage( Window* pParent, const SfxItemSet& rItemSet )
{
pFrame->GetTargetList( aList );
- String* pObj;
- for( USHORT nPos = ( USHORT ) aList.Count() ; nPos ; )
+ String* pObj;
+ for( size_t nPos = aList.size() ; nPos ; )
{
- pObj = aList.GetObject( --nPos );
+ pObj = aList[ --nPos ];
aCBFrame.InsertEntry( *pObj );
delete pObj;
}
@@ -2335,7 +2318,6 @@ CustomPropertiesControl::CustomPropertiesControl( Window* pParent, const ResId&
Link aScrollLink = LINK( this, CustomPropertiesControl, ScrollHdl );
m_aVertScroll.SetScrollHdl( aScrollLink );
-// m_aVertScroll.SetEndScrollHdl( aScrollLink );
}
CustomPropertiesControl::~CustomPropertiesControl()
diff --git a/sfx2/source/view/frame.cxx b/sfx2/source/view/frame.cxx
index e4b125846d34..41452da24cad 100644
--- a/sfx2/source/view/frame.cxx
+++ b/sfx2/source/view/frame.cxx
@@ -493,11 +493,11 @@ void SfxFrame::GetTargetList( TargetList& rList ) const
if ( !GetParentFrame() )
{
// Einen Leerstring f"ur 'Kein Target'
- rList.Insert( new String() );
- rList.Insert( new String( DEFINE_CONST_UNICODE( "_top" ) ) );
- rList.Insert( new String( DEFINE_CONST_UNICODE( "_parent" ) ) );
- rList.Insert( new String( DEFINE_CONST_UNICODE( "_blank" ) ) );
- rList.Insert( new String( DEFINE_CONST_UNICODE( "_self" ) ) );
+ rList.push_back( new String() );
+ rList.push_back( new String( DEFINE_CONST_UNICODE( "_top" ) ) );
+ rList.push_back( new String( DEFINE_CONST_UNICODE( "_parent" ) ) );
+ rList.push_back( new String( DEFINE_CONST_UNICODE( "_blank" ) ) );
+ rList.push_back( new String( DEFINE_CONST_UNICODE( "_self" ) ) );
}
SfxViewFrame* pView = GetCurrentViewFrame();