summaryrefslogtreecommitdiff
path: root/sd/inc/CustomAnimationPreset.hxx
diff options
context:
space:
mode:
authorAbhyudaya Sharma <sharmaabhyudaya@gmail.com>2018-06-04 11:10:59 +0530
committerTor Lillqvist <tml@collabora.com>2018-06-07 07:28:54 +0200
commit251cb2a7b8b6c1f3fa6335911f0df38b23765da2 (patch)
tree6e060d9231b91c7cd37ec4d4b779adf88295a634 /sd/inc/CustomAnimationPreset.hxx
parentb292a27698e85fd9d60c03613c3b0c67835c4dc1 (diff)
tdf#96099 Remove std::vector typedefs
Change-Id: Ic7e1cecaecadf3f9ebfa183727d61046dd87e473 Reviewed-on: https://gerrit.libreoffice.org/55260 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'sd/inc/CustomAnimationPreset.hxx')
-rw-r--r--sd/inc/CustomAnimationPreset.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/sd/inc/CustomAnimationPreset.hxx b/sd/inc/CustomAnimationPreset.hxx
index 2685dd2be4d3..85318c9c4c2a 100644
--- a/sd/inc/CustomAnimationPreset.hxx
+++ b/sd/inc/CustomAnimationPreset.hxx
@@ -34,7 +34,6 @@ namespace sd {
typedef std::unordered_map< OUString, CustomAnimationEffectPtr > EffectsSubTypeMap;
typedef std::unordered_map< OUString, OUString > UStringMap;
-typedef std::vector< OUString > UStringList;
class CustomAnimationPreset
{
@@ -51,8 +50,8 @@ public:
const OUString& getLabel() const { return maLabel; }
double getDuration() const { return mfDuration; }
- UStringList getSubTypes();
- UStringList getProperties() const;
+ std::vector<OUString> getSubTypes();
+ std::vector<OUString> getProperties() const;
bool hasProperty( const OUString& rProperty ) const;
bool isTextOnly() const { return mbIsTextOnly; }