summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--icon-themes/elementary/vcl/res/check.pngbin478 -> 488 bytes
-rw-r--r--icon-themes/elementary/vcl/res/checkmono.pngbin476 -> 476 bytes
-rw-r--r--icon-themes/elementary/vcl/res/radio.pngbin393 -> 452 bytes
-rw-r--r--icon-themes/elementary/vcl/res/radiomono.pngbin437 -> 450 bytes
-rw-r--r--icon-themes/galaxy/vcl/res/check.pngbin478 -> 488 bytes
-rw-r--r--icon-themes/galaxy/vcl/res/checkmono.pngbin476 -> 476 bytes
-rw-r--r--icon-themes/galaxy/vcl/res/radio.pngbin393 -> 452 bytes
-rw-r--r--icon-themes/galaxy/vcl/res/radiomono.pngbin437 -> 450 bytes
-rw-r--r--vcl/source/control/button.cxx4
9 files changed, 1 insertions, 3 deletions
diff --git a/icon-themes/elementary/vcl/res/check.png b/icon-themes/elementary/vcl/res/check.png
index daeddd2ddcca..05f8b1c381c3 100644
--- a/icon-themes/elementary/vcl/res/check.png
+++ b/icon-themes/elementary/vcl/res/check.png
Binary files differ
diff --git a/icon-themes/elementary/vcl/res/checkmono.png b/icon-themes/elementary/vcl/res/checkmono.png
index 69c89139bf49..dc8888e0442c 100644
--- a/icon-themes/elementary/vcl/res/checkmono.png
+++ b/icon-themes/elementary/vcl/res/checkmono.png
Binary files differ
diff --git a/icon-themes/elementary/vcl/res/radio.png b/icon-themes/elementary/vcl/res/radio.png
index 73e2a04c474c..dff083949b97 100644
--- a/icon-themes/elementary/vcl/res/radio.png
+++ b/icon-themes/elementary/vcl/res/radio.png
Binary files differ
diff --git a/icon-themes/elementary/vcl/res/radiomono.png b/icon-themes/elementary/vcl/res/radiomono.png
index d9e447102afd..cdee168c1351 100644
--- a/icon-themes/elementary/vcl/res/radiomono.png
+++ b/icon-themes/elementary/vcl/res/radiomono.png
Binary files differ
diff --git a/icon-themes/galaxy/vcl/res/check.png b/icon-themes/galaxy/vcl/res/check.png
index 3bf35b2d6ae5..05f8b1c381c3 100644
--- a/icon-themes/galaxy/vcl/res/check.png
+++ b/icon-themes/galaxy/vcl/res/check.png
Binary files differ
diff --git a/icon-themes/galaxy/vcl/res/checkmono.png b/icon-themes/galaxy/vcl/res/checkmono.png
index 4cabe1284025..afdf871f4fe9 100644
--- a/icon-themes/galaxy/vcl/res/checkmono.png
+++ b/icon-themes/galaxy/vcl/res/checkmono.png
Binary files differ
diff --git a/icon-themes/galaxy/vcl/res/radio.png b/icon-themes/galaxy/vcl/res/radio.png
index c198a6d9ef90..dff083949b97 100644
--- a/icon-themes/galaxy/vcl/res/radio.png
+++ b/icon-themes/galaxy/vcl/res/radio.png
Binary files differ
diff --git a/icon-themes/galaxy/vcl/res/radiomono.png b/icon-themes/galaxy/vcl/res/radiomono.png
index aba237e266d2..88f101430b82 100644
--- a/icon-themes/galaxy/vcl/res/radiomono.png
+++ b/icon-themes/galaxy/vcl/res/radiomono.png
Binary files differ
diff --git a/vcl/source/control/button.cxx b/vcl/source/control/button.cxx
index 47dc44a22564..02cd28ca270a 100644
--- a/vcl/source/control/button.cxx
+++ b/vcl/source/control/button.cxx
@@ -2766,10 +2766,8 @@ static void LoadThemedImageList (const StyleSettings &rStyleSettings,
aColorAry2[4] = rStyleSettings.GetDarkShadowColor();
aColorAry2[5] = rStyleSettings.GetWindowTextColor();
- Color aMaskColor(0x00, 0x00, 0xFF );
static_assert( sizeof(aColorAry1) == sizeof(aColorAry2), "aColorAry1 must match aColorAry2" );
- // FIXME: do we want the mask for the checkbox ?
- pList->InsertFromHorizontalBitmap (rResId, nImages, &aMaskColor,
+ pList->InsertFromHorizontalBitmap (rResId, nImages, nullptr,
aColorAry1, aColorAry2, SAL_N_ELEMENTS(aColorAry1));
}