summaryrefslogtreecommitdiff
path: root/sfx2/inc
diff options
context:
space:
mode:
authorAugust Sodora <augsod@gmail.com>2012-01-11 22:18:58 -0500
committerAugust Sodora <augsod@gmail.com>2012-01-11 22:18:58 -0500
commit8be35fc8c1f24a05deb6ba850ad42ca17352350e (patch)
tree2588de77c4eaec440a7a1a5ad8e58288da3ac77d /sfx2/inc
parentf8e071697ca2fe5e8cd91a5c87fdb720562902af (diff)
SvStringsDtor->std::vector
Diffstat (limited to 'sfx2/inc')
-rw-r--r--sfx2/inc/sfx2/docinsert.hxx15
1 files changed, 1 insertions, 14 deletions
diff --git a/sfx2/inc/sfx2/docinsert.hxx b/sfx2/inc/sfx2/docinsert.hxx
index 292b396cc906..6ec962764a73 100644
--- a/sfx2/inc/sfx2/docinsert.hxx
+++ b/sfx2/inc/sfx2/docinsert.hxx
@@ -39,20 +39,11 @@
namespace sfx2 { class FileDialogHelper; }
class SfxMedium;
class SfxItemSet;
-class SvStringsDtor;
typedef ::std::vector< SfxMedium* > SfxMediumList;
-// ============================================================================
-
namespace sfx2 {
-// ============================================================================
-
-// ============================================================================
-// DocumentInserter
-// ============================================================================
-
class SFX2_DLLPUBLIC DocumentInserter
{
private:
@@ -65,7 +56,7 @@ private:
sfx2::FileDialogHelper* m_pFileDlg;
SfxItemSet* m_pItemSet;
- SvStringsDtor* m_pURLList;
+ std::vector<rtl::OUString> m_pURLList;
DECL_LINK( DialogClosedHdl, sfx2::FileDialogHelper* );
@@ -82,12 +73,8 @@ public:
inline String GetFilter() const { return m_sFilter; }
};
-// ============================================================================
-
} // namespace sfx2
-// ============================================================================
-
#endif // _SFX_DOCINSERT_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */