diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-11-26 15:07:01 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-11-28 13:28:32 -0500 |
commit | f29c3435caf60b567bc67684b4633c57f6610fab (patch) | |
tree | 6801eeada389b604cd448d94ea8d51e7c8d4f5ca | |
parent | 343538e2cca56393e6ee8ded07f1074c0b995c71 (diff) |
Add preliminary icons for use in XML tree from Alexander Wilms.
Change-Id: I69ac622bd9ada7dccfbeda7a2a8c3cfd7717dace
-rw-r--r-- | icon-themes/galaxy/sc/res/xml_attribute.png | bin | 0 -> 419 bytes | |||
-rw-r--r-- | icon-themes/galaxy/sc/res/xml_element.png | bin | 0 -> 405 bytes | |||
-rw-r--r-- | icon-themes/galaxy/sc/res/xml_element_repeat.png | bin | 0 -> 406 bytes | |||
-rw-r--r-- | sc/source/ui/src/xmlsourcedlg.src | 6 |
4 files changed, 3 insertions, 3 deletions
diff --git a/icon-themes/galaxy/sc/res/xml_attribute.png b/icon-themes/galaxy/sc/res/xml_attribute.png Binary files differnew file mode 100644 index 000000000000..013bd4bee9fc --- /dev/null +++ b/icon-themes/galaxy/sc/res/xml_attribute.png diff --git a/icon-themes/galaxy/sc/res/xml_element.png b/icon-themes/galaxy/sc/res/xml_element.png Binary files differnew file mode 100644 index 000000000000..cda4265b57ab --- /dev/null +++ b/icon-themes/galaxy/sc/res/xml_element.png diff --git a/icon-themes/galaxy/sc/res/xml_element_repeat.png b/icon-themes/galaxy/sc/res/xml_element_repeat.png Binary files differnew file mode 100644 index 000000000000..fe90995537a8 --- /dev/null +++ b/icon-themes/galaxy/sc/res/xml_element_repeat.png diff --git a/sc/source/ui/src/xmlsourcedlg.src b/sc/source/ui/src/xmlsourcedlg.src index d90b4981eed5..009fc9649901 100644 --- a/sc/source/ui/src/xmlsourcedlg.src +++ b/sc/source/ui/src/xmlsourcedlg.src @@ -82,19 +82,19 @@ ModelessDialog RID_SCDLG_XML_SOURCE Image IMG_ELEMENT_DEFAULT { - ImageBitmap = Bitmap { File = "page.png" ; }; + ImageBitmap = Bitmap { File = "xml_element.png" ; }; MaskColor = STD_MASKCOLOR ; }; Image IMG_ELEMENT_REPEAT { - ImageBitmap = Bitmap { File = "pages.png" ; }; + ImageBitmap = Bitmap { File = "xml_element_repeat.png" ; }; MaskColor = STD_MASKCOLOR ; }; Image IMG_ELEMENT_ATTRIBUTE { - ImageBitmap = Bitmap { File = "time.png" ; }; + ImageBitmap = Bitmap { File = "xml_attribute.png" ; }; MaskColor = STD_MASKCOLOR ; }; |