diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-07-14 08:15:57 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-07-14 08:17:20 +0900 |
commit | 542b45af44cae091735d9c2e11756a928e230261 (patch) | |
tree | 4cc217599019a29265ecbad9ab3df4aed95a5885 /slideshow/test | |
parent | 76488b00ed75bf7915d6d57af9875c6434e740d6 (diff) |
Mark as const
Change-Id: I0bf93f1293fb08b8b558fcac0cb496ed99ad13d9
Diffstat (limited to 'slideshow/test')
-rw-r--r-- | slideshow/test/demoshow.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slideshow/test/demoshow.cxx b/slideshow/test/demoshow.cxx index e7385123df83..f39fa0944c9c 100644 --- a/slideshow/test/demoshow.cxx +++ b/slideshow/test/demoshow.cxx @@ -255,7 +255,7 @@ private: typedef ::canvas::tools::ValueMap< sal_Int16 > PropMapT; // fixed PropertyValue map - static PropMapT::MapEntry lcl_propertyMap[] = + static const PropMapT::MapEntry lcl_propertyMap[] = { {"Height", 100}, {"MinimalFrameNumber", 50}, @@ -265,7 +265,7 @@ private: {"Width", 100} }; - static PropMapT aMap( lcl_propertyMap, + static const PropMapT aMap( lcl_propertyMap, SAL_N_ELEMENTS(lcl_propertyMap), true ); |