From 301d4553a2c1496905a6f29a8acfbc028813dedf Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sat, 10 Aug 2013 09:48:32 -0700 Subject: [PATCH] gui: Restore icons deleted in error. These icons were deleted by commit caa467c9a26a7 (gui: Update artwork.) even though they were still in use. This commit restores them and allows "make -f Smake" to complete without error. --- .../actions/16x16/data-select-case.svg | 196 +++++ .../artwork/actions/16x16/data-sort-cases.svg | 222 +++++ .../artwork/actions/16x16/edit-add-case.svg | 250 ++++++ .../actions/16x16/edit-add-variable.svg | 250 ++++++ .../artwork/actions/16x16/edit-clear-data.svg | 220 +++++ .../actions/16x16/edit-search-case.svg | 218 +++++ .../gui/artwork/actions/16x16/file-quit.svg | 158 ++++ .../artwork/actions/16x16/recent-dialogs.svg | 245 ++++++ .../transform-recode-different-variables.svg | 184 ++++ .../16x16/transform-recode-same-variables.svg | 184 ++++ .../16x16/transform-runpending-transforms.svg | 235 +++++ .../artwork/actions/16x16/utilities-case.svg | 202 +++++ .../16x16/utilities-datafile-comments.svg | 227 +++++ .../actions/16x16/utilities-variable.svg | 202 +++++ .../artwork/actions/16x16/view-fullscreen.svg | 249 ++++++ .../actions/24x24/data-select-case.svg | 272 ++++++ .../artwork/actions/24x24/data-sort-cases.svg | 180 ++++ .../artwork/actions/24x24/edit-add-case.svg | 260 ++++++ .../actions/24x24/edit-add-variable.svg | 250 ++++++ .../artwork/actions/24x24/edit-clear-data.svg | 182 ++++ .../actions/24x24/edit-insert-case.svg | 251 ++++++ .../actions/24x24/edit-insert-variable.svg | 257 ++++++ .../actions/24x24/edit-search-case.svg | 179 ++++ .../gui/artwork/actions/24x24/file-quit.svg | 203 +++++ .../actions/24x24/help-reference-manual.svg | 167 ++++ .../artwork/actions/24x24/recent-dialogs.svg | 209 +++++ .../transform-recode-different-variables.svg | 168 ++++ .../24x24/transform-recode-same-variables.svg | 173 ++++ .../24x24/transform-runpending-transforms.svg | 235 +++++ .../artwork/actions/24x24/utilities-case.svg | 187 ++++ .../24x24/utilities-datafile-comments.svg | 800 +++--------------- .../actions/24x24/utilities-variable.svg | 187 ++++ .../artwork/actions/24x24/view-fullscreen.svg | 249 ++++++ .../16x16/variable-string-scale.svg | 162 ++++ .../24x24/variable-string-scale.svg | 206 +++++ 35 files changed, 7359 insertions(+), 660 deletions(-) create mode 100644 src/ui/gui/artwork/actions/16x16/data-select-case.svg create mode 100644 src/ui/gui/artwork/actions/16x16/data-sort-cases.svg create mode 100644 src/ui/gui/artwork/actions/16x16/edit-add-case.svg create mode 100644 src/ui/gui/artwork/actions/16x16/edit-add-variable.svg create mode 100644 src/ui/gui/artwork/actions/16x16/edit-clear-data.svg create mode 100644 src/ui/gui/artwork/actions/16x16/edit-search-case.svg create mode 100644 src/ui/gui/artwork/actions/16x16/file-quit.svg create mode 100644 src/ui/gui/artwork/actions/16x16/recent-dialogs.svg create mode 100644 src/ui/gui/artwork/actions/16x16/transform-recode-different-variables.svg create mode 100644 src/ui/gui/artwork/actions/16x16/transform-recode-same-variables.svg create mode 100644 src/ui/gui/artwork/actions/16x16/transform-runpending-transforms.svg create mode 100644 src/ui/gui/artwork/actions/16x16/utilities-case.svg create mode 100644 src/ui/gui/artwork/actions/16x16/utilities-datafile-comments.svg create mode 100644 src/ui/gui/artwork/actions/16x16/utilities-variable.svg create mode 100644 src/ui/gui/artwork/actions/16x16/view-fullscreen.svg create mode 100644 src/ui/gui/artwork/actions/24x24/data-select-case.svg create mode 100644 src/ui/gui/artwork/actions/24x24/data-sort-cases.svg create mode 100644 src/ui/gui/artwork/actions/24x24/edit-add-case.svg create mode 100644 src/ui/gui/artwork/actions/24x24/edit-add-variable.svg create mode 100644 src/ui/gui/artwork/actions/24x24/edit-clear-data.svg create mode 100644 src/ui/gui/artwork/actions/24x24/edit-insert-case.svg create mode 100644 src/ui/gui/artwork/actions/24x24/edit-insert-variable.svg create mode 100644 src/ui/gui/artwork/actions/24x24/edit-search-case.svg create mode 100644 src/ui/gui/artwork/actions/24x24/file-quit.svg create mode 100644 src/ui/gui/artwork/actions/24x24/help-reference-manual.svg create mode 100644 src/ui/gui/artwork/actions/24x24/recent-dialogs.svg create mode 100644 src/ui/gui/artwork/actions/24x24/transform-recode-different-variables.svg create mode 100644 src/ui/gui/artwork/actions/24x24/transform-recode-same-variables.svg create mode 100644 src/ui/gui/artwork/actions/24x24/transform-runpending-transforms.svg create mode 100644 src/ui/gui/artwork/actions/24x24/utilities-case.svg create mode 100644 src/ui/gui/artwork/actions/24x24/utilities-variable.svg create mode 100644 src/ui/gui/artwork/actions/24x24/view-fullscreen.svg create mode 100644 src/ui/gui/artwork/categories/16x16/variable-string-scale.svg create mode 100644 src/ui/gui/artwork/categories/24x24/variable-string-scale.svg diff --git a/src/ui/gui/artwork/actions/16x16/data-select-case.svg b/src/ui/gui/artwork/actions/16x16/data-select-case.svg new file mode 100644 index 0000000000..e82e9c1a44 --- /dev/null +++ b/src/ui/gui/artwork/actions/16x16/data-select-case.svg @@ -0,0 +1,196 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/16x16/data-sort-cases.svg b/src/ui/gui/artwork/actions/16x16/data-sort-cases.svg new file mode 100644 index 0000000000..2cf81c491b --- /dev/null +++ b/src/ui/gui/artwork/actions/16x16/data-sort-cases.svg @@ -0,0 +1,222 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/16x16/edit-add-case.svg b/src/ui/gui/artwork/actions/16x16/edit-add-case.svg new file mode 100644 index 0000000000..f0a83a6c0b --- /dev/null +++ b/src/ui/gui/artwork/actions/16x16/edit-add-case.svg @@ -0,0 +1,250 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/16x16/edit-add-variable.svg b/src/ui/gui/artwork/actions/16x16/edit-add-variable.svg new file mode 100644 index 0000000000..2a88b01eb9 --- /dev/null +++ b/src/ui/gui/artwork/actions/16x16/edit-add-variable.svg @@ -0,0 +1,250 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/16x16/edit-clear-data.svg b/src/ui/gui/artwork/actions/16x16/edit-clear-data.svg new file mode 100644 index 0000000000..006efb5b05 --- /dev/null +++ b/src/ui/gui/artwork/actions/16x16/edit-clear-data.svg @@ -0,0 +1,220 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/16x16/edit-search-case.svg b/src/ui/gui/artwork/actions/16x16/edit-search-case.svg new file mode 100644 index 0000000000..f0f64a2100 --- /dev/null +++ b/src/ui/gui/artwork/actions/16x16/edit-search-case.svg @@ -0,0 +1,218 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/16x16/file-quit.svg b/src/ui/gui/artwork/actions/16x16/file-quit.svg new file mode 100644 index 0000000000..75d51cb402 --- /dev/null +++ b/src/ui/gui/artwork/actions/16x16/file-quit.svg @@ -0,0 +1,158 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/16x16/recent-dialogs.svg b/src/ui/gui/artwork/actions/16x16/recent-dialogs.svg new file mode 100644 index 0000000000..5f0a326d74 --- /dev/null +++ b/src/ui/gui/artwork/actions/16x16/recent-dialogs.svg @@ -0,0 +1,245 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/16x16/transform-recode-different-variables.svg b/src/ui/gui/artwork/actions/16x16/transform-recode-different-variables.svg new file mode 100644 index 0000000000..9d4a7fedb3 --- /dev/null +++ b/src/ui/gui/artwork/actions/16x16/transform-recode-different-variables.svg @@ -0,0 +1,184 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/16x16/transform-recode-same-variables.svg b/src/ui/gui/artwork/actions/16x16/transform-recode-same-variables.svg new file mode 100644 index 0000000000..0da676eb1f --- /dev/null +++ b/src/ui/gui/artwork/actions/16x16/transform-recode-same-variables.svg @@ -0,0 +1,184 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/16x16/transform-runpending-transforms.svg b/src/ui/gui/artwork/actions/16x16/transform-runpending-transforms.svg new file mode 100644 index 0000000000..7818ce0643 --- /dev/null +++ b/src/ui/gui/artwork/actions/16x16/transform-runpending-transforms.svg @@ -0,0 +1,235 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/16x16/utilities-case.svg b/src/ui/gui/artwork/actions/16x16/utilities-case.svg new file mode 100644 index 0000000000..c7edee422c --- /dev/null +++ b/src/ui/gui/artwork/actions/16x16/utilities-case.svg @@ -0,0 +1,202 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/16x16/utilities-datafile-comments.svg b/src/ui/gui/artwork/actions/16x16/utilities-datafile-comments.svg new file mode 100644 index 0000000000..b5540c28b6 --- /dev/null +++ b/src/ui/gui/artwork/actions/16x16/utilities-datafile-comments.svg @@ -0,0 +1,227 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/16x16/utilities-variable.svg b/src/ui/gui/artwork/actions/16x16/utilities-variable.svg new file mode 100644 index 0000000000..1e911d9c5c --- /dev/null +++ b/src/ui/gui/artwork/actions/16x16/utilities-variable.svg @@ -0,0 +1,202 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/16x16/view-fullscreen.svg b/src/ui/gui/artwork/actions/16x16/view-fullscreen.svg new file mode 100644 index 0000000000..38ab7c8db6 --- /dev/null +++ b/src/ui/gui/artwork/actions/16x16/view-fullscreen.svg @@ -0,0 +1,249 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/24x24/data-select-case.svg b/src/ui/gui/artwork/actions/24x24/data-select-case.svg new file mode 100644 index 0000000000..e25c09c190 --- /dev/null +++ b/src/ui/gui/artwork/actions/24x24/data-select-case.svg @@ -0,0 +1,272 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/24x24/data-sort-cases.svg b/src/ui/gui/artwork/actions/24x24/data-sort-cases.svg new file mode 100644 index 0000000000..c1d2b9f8e8 --- /dev/null +++ b/src/ui/gui/artwork/actions/24x24/data-sort-cases.svg @@ -0,0 +1,180 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/24x24/edit-add-case.svg b/src/ui/gui/artwork/actions/24x24/edit-add-case.svg new file mode 100644 index 0000000000..640740ba1c --- /dev/null +++ b/src/ui/gui/artwork/actions/24x24/edit-add-case.svg @@ -0,0 +1,260 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/24x24/edit-add-variable.svg b/src/ui/gui/artwork/actions/24x24/edit-add-variable.svg new file mode 100644 index 0000000000..b423e17cdc --- /dev/null +++ b/src/ui/gui/artwork/actions/24x24/edit-add-variable.svg @@ -0,0 +1,250 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/24x24/edit-clear-data.svg b/src/ui/gui/artwork/actions/24x24/edit-clear-data.svg new file mode 100644 index 0000000000..133bea8dec --- /dev/null +++ b/src/ui/gui/artwork/actions/24x24/edit-clear-data.svg @@ -0,0 +1,182 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/24x24/edit-insert-case.svg b/src/ui/gui/artwork/actions/24x24/edit-insert-case.svg new file mode 100644 index 0000000000..ddca47e5ce --- /dev/null +++ b/src/ui/gui/artwork/actions/24x24/edit-insert-case.svg @@ -0,0 +1,251 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/24x24/edit-insert-variable.svg b/src/ui/gui/artwork/actions/24x24/edit-insert-variable.svg new file mode 100644 index 0000000000..e26c8bb4e0 --- /dev/null +++ b/src/ui/gui/artwork/actions/24x24/edit-insert-variable.svg @@ -0,0 +1,257 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/24x24/edit-search-case.svg b/src/ui/gui/artwork/actions/24x24/edit-search-case.svg new file mode 100644 index 0000000000..f35be4e1e7 --- /dev/null +++ b/src/ui/gui/artwork/actions/24x24/edit-search-case.svg @@ -0,0 +1,179 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/24x24/file-quit.svg b/src/ui/gui/artwork/actions/24x24/file-quit.svg new file mode 100644 index 0000000000..519e856efc --- /dev/null +++ b/src/ui/gui/artwork/actions/24x24/file-quit.svg @@ -0,0 +1,203 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/24x24/help-reference-manual.svg b/src/ui/gui/artwork/actions/24x24/help-reference-manual.svg new file mode 100644 index 0000000000..e720dd6709 --- /dev/null +++ b/src/ui/gui/artwork/actions/24x24/help-reference-manual.svg @@ -0,0 +1,167 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/24x24/recent-dialogs.svg b/src/ui/gui/artwork/actions/24x24/recent-dialogs.svg new file mode 100644 index 0000000000..d336ae7afb --- /dev/null +++ b/src/ui/gui/artwork/actions/24x24/recent-dialogs.svg @@ -0,0 +1,209 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/24x24/transform-recode-different-variables.svg b/src/ui/gui/artwork/actions/24x24/transform-recode-different-variables.svg new file mode 100644 index 0000000000..e9116c8c7c --- /dev/null +++ b/src/ui/gui/artwork/actions/24x24/transform-recode-different-variables.svg @@ -0,0 +1,168 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/24x24/transform-recode-same-variables.svg b/src/ui/gui/artwork/actions/24x24/transform-recode-same-variables.svg new file mode 100644 index 0000000000..17172f2c56 --- /dev/null +++ b/src/ui/gui/artwork/actions/24x24/transform-recode-same-variables.svg @@ -0,0 +1,173 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/24x24/transform-runpending-transforms.svg b/src/ui/gui/artwork/actions/24x24/transform-runpending-transforms.svg new file mode 100644 index 0000000000..d0bf1d5f4c --- /dev/null +++ b/src/ui/gui/artwork/actions/24x24/transform-runpending-transforms.svg @@ -0,0 +1,235 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/24x24/utilities-case.svg b/src/ui/gui/artwork/actions/24x24/utilities-case.svg new file mode 100644 index 0000000000..4ef905a72f --- /dev/null +++ b/src/ui/gui/artwork/actions/24x24/utilities-case.svg @@ -0,0 +1,187 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/24x24/utilities-datafile-comments.svg b/src/ui/gui/artwork/actions/24x24/utilities-datafile-comments.svg index b6843f8bbe..89569f9311 100644 --- a/src/ui/gui/artwork/actions/24x24/utilities-datafile-comments.svg +++ b/src/ui/gui/artwork/actions/24x24/utilities-datafile-comments.svg @@ -7,614 +7,26 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg2" + id="svg7384" + sodipodi:docname="utilities-datafile-comments.svg" version="1.1" inkscape:version="0.48.4 r9939" - sodipodi:docname="utilities-cases.svg"> - GNU PSPP flat icon theme - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + height="24" + width="24" + inkscape:export-filename="/home/raizen/Escritorio/PSPP icon original/Carpeta sin título/goto-case.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + id="metadata90"> image/svg+xml - GNU PSPP flat icon theme - Set de iconos derivados del proyecto GNOME icon theme symbolic. + GNU PSPP Community @@ -622,16 +34,6 @@ - - - - - - - Bastián Díaz -Hugo Valencia - - @@ -650,60 +52,138 @@ Hugo Valencia + + + + + + + + + + + + - - - - - - - - + id="layer12" + style="display:inline"> + + + + + + + diff --git a/src/ui/gui/artwork/actions/24x24/utilities-variable.svg b/src/ui/gui/artwork/actions/24x24/utilities-variable.svg new file mode 100644 index 0000000000..2e4e0b92d8 --- /dev/null +++ b/src/ui/gui/artwork/actions/24x24/utilities-variable.svg @@ -0,0 +1,187 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/actions/24x24/view-fullscreen.svg b/src/ui/gui/artwork/actions/24x24/view-fullscreen.svg new file mode 100644 index 0000000000..dbb695a166 --- /dev/null +++ b/src/ui/gui/artwork/actions/24x24/view-fullscreen.svg @@ -0,0 +1,249 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/categories/16x16/variable-string-scale.svg b/src/ui/gui/artwork/categories/16x16/variable-string-scale.svg new file mode 100644 index 0000000000..c7b2d29eca --- /dev/null +++ b/src/ui/gui/artwork/categories/16x16/variable-string-scale.svg @@ -0,0 +1,162 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/gui/artwork/categories/24x24/variable-string-scale.svg b/src/ui/gui/artwork/categories/24x24/variable-string-scale.svg new file mode 100644 index 0000000000..c7e01d055a --- /dev/null +++ b/src/ui/gui/artwork/categories/24x24/variable-string-scale.svg @@ -0,0 +1,206 @@ + + + + + + + + image/svg+xml + + + + + GNU PSPP Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- 2.30.2