@@ -225,10 +225,10 @@ namespace litehtml
225
225
list_style_position get_list_style_position () const ;
226
226
void set_list_style_position (list_style_position mListStylePosition );
227
227
228
- string get_list_style_image () const ;
228
+ const string& get_list_style_image () const ;
229
229
void set_list_style_image (const string& url);
230
230
231
- string get_list_style_image_baseurl () const ;
231
+ const string& get_list_style_image_baseurl () const ;
232
232
void set_list_style_image_baseurl (const string& url);
233
233
234
234
const background &get_bg () const ;
@@ -249,10 +249,10 @@ namespace litehtml
249
249
web_color get_color () const ;
250
250
void set_color (web_color color);
251
251
252
- string get_cursor () const ;
252
+ const string& get_cursor () const ;
253
253
void set_cursor (const string& cursor);
254
254
255
- string get_content () const ;
255
+ const string& get_content () const ;
256
256
void set_content (const string& content);
257
257
258
258
border_collapse get_border_collapse () const ;
@@ -546,10 +546,10 @@ namespace litehtml
546
546
m_list_style_position = mListStylePosition ;
547
547
}
548
548
549
- inline string css_properties::get_list_style_image () const { return m_list_style_image; }
549
+ inline const string& css_properties::get_list_style_image () const { return m_list_style_image; }
550
550
inline void css_properties::set_list_style_image (const string& url) { m_list_style_image = url; }
551
551
552
- inline string css_properties::get_list_style_image_baseurl () const { return m_list_style_image_baseurl; }
552
+ inline const string& css_properties::get_list_style_image_baseurl () const { return m_list_style_image_baseurl; }
553
553
inline void css_properties::set_list_style_image_baseurl (const string& url) { m_list_style_image_baseurl = url; }
554
554
555
555
inline const background &css_properties::get_bg () const
@@ -605,10 +605,10 @@ namespace litehtml
605
605
inline web_color css_properties::get_color () const { return m_color; }
606
606
inline void css_properties::set_color (web_color color) { m_color = color; }
607
607
608
- inline string css_properties::get_cursor () const { return m_cursor; }
608
+ inline const string& css_properties::get_cursor () const { return m_cursor; }
609
609
inline void css_properties::set_cursor (const string& cursor) { m_cursor = cursor; }
610
610
611
- inline string css_properties::get_content () const { return m_content; }
611
+ inline const string& css_properties::get_content () const { return m_content; }
612
612
inline void css_properties::set_content (const string& content) { m_content = content; }
613
613
614
614
inline border_collapse css_properties::get_border_collapse () const
0 commit comments