diff options
author | Savio Sena <savio.sena@acm.org> | 2014-09-18 00:33:33 -0300 |
---|---|---|
committer | Savio Sena <savio.sena@acm.org> | 2014-09-18 00:33:33 -0300 |
commit | 095e9141b7f7823865a477ca9fb8f6463892da8d (patch) | |
tree | bf04c40dee08a2ac17396c431166c10ba1d670c9 /src | |
parent | 0691d96d6c696dcb744373657738149f0e895feb (diff) |
expedite-cxx: Set visibility to hidden upon destruction.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/cxx/image_blend_border.cc | 2 | ||||
-rw-r--r-- | src/bin/cxx/image_blend_border_recolor.cc | 2 | ||||
-rw-r--r-- | src/bin/cxx/image_blend_fade_unscaled.cc | 2 | ||||
-rw-r--r-- | src/bin/cxx/image_blend_solid_border.cc | 2 | ||||
-rw-r--r-- | src/bin/cxx/image_blend_solid_fade_pow2_unscaled.cc | 2 | ||||
-rw-r--r-- | src/bin/cxx/image_blend_solid_fade_unscaled.cc | 2 | ||||
-rw-r--r-- | src/bin/cxx/image_blend_solid_unscaled.cc | 2 |
7 files changed, 14 insertions, 0 deletions
diff --git a/src/bin/cxx/image_blend_border.cc b/src/bin/cxx/image_blend_border.cc index 4fdfeee..992b2ad 100644 --- a/src/bin/cxx/image_blend_border.cc +++ b/src/bin/cxx/image_blend_border.cc | |||
@@ -38,6 +38,8 @@ static void _setup() | |||
38 | /* cleanup */ | 38 | /* cleanup */ |
39 | static void _cleanup() | 39 | static void _cleanup() |
40 | { | 40 | { |
41 | for (evas::image o : images) | ||
42 | o.visibility_set(false); | ||
41 | images.clear(); | 43 | images.clear(); |
42 | } | 44 | } |
43 | 45 | ||
diff --git a/src/bin/cxx/image_blend_border_recolor.cc b/src/bin/cxx/image_blend_border_recolor.cc index 049fa95..2d64c31 100644 --- a/src/bin/cxx/image_blend_border_recolor.cc +++ b/src/bin/cxx/image_blend_border_recolor.cc | |||
@@ -39,6 +39,8 @@ static void _setup(void) | |||
39 | /* cleanup */ | 39 | /* cleanup */ |
40 | static void _cleanup(void) | 40 | static void _cleanup(void) |
41 | { | 41 | { |
42 | for (evas::image o : images) | ||
43 | o.visibility_set(false); | ||
42 | images.clear(); | 44 | images.clear(); |
43 | } | 45 | } |
44 | 46 | ||
diff --git a/src/bin/cxx/image_blend_fade_unscaled.cc b/src/bin/cxx/image_blend_fade_unscaled.cc index 93564b8..a8cded0 100644 --- a/src/bin/cxx/image_blend_fade_unscaled.cc +++ b/src/bin/cxx/image_blend_fade_unscaled.cc | |||
@@ -42,6 +42,8 @@ static void _setup(void) | |||
42 | /* cleanup */ | 42 | /* cleanup */ |
43 | static void _cleanup(void) | 43 | static void _cleanup(void) |
44 | { | 44 | { |
45 | for (evas::image o : images) | ||
46 | o.visibility_set(false); | ||
45 | images.clear(); | 47 | images.clear(); |
46 | } | 48 | } |
47 | 49 | ||
diff --git a/src/bin/cxx/image_blend_solid_border.cc b/src/bin/cxx/image_blend_solid_border.cc index 99f5239..89be101 100644 --- a/src/bin/cxx/image_blend_solid_border.cc +++ b/src/bin/cxx/image_blend_solid_border.cc | |||
@@ -38,6 +38,8 @@ static void _setup(void) | |||
38 | /* cleanup */ | 38 | /* cleanup */ |
39 | static void _cleanup(void) | 39 | static void _cleanup(void) |
40 | { | 40 | { |
41 | for (evas::image o : images) | ||
42 | o.visibility_set(false); | ||
41 | images.clear(); | 43 | images.clear(); |
42 | } | 44 | } |
43 | 45 | ||
diff --git a/src/bin/cxx/image_blend_solid_fade_pow2_unscaled.cc b/src/bin/cxx/image_blend_solid_fade_pow2_unscaled.cc index 6520769..526a372 100644 --- a/src/bin/cxx/image_blend_solid_fade_pow2_unscaled.cc +++ b/src/bin/cxx/image_blend_solid_fade_pow2_unscaled.cc | |||
@@ -42,6 +42,8 @@ static void _setup(void) | |||
42 | /* cleanup */ | 42 | /* cleanup */ |
43 | static void _cleanup(void) | 43 | static void _cleanup(void) |
44 | { | 44 | { |
45 | for (evas::image o : images) | ||
46 | o.visibility_set(false); | ||
45 | images.clear(); | 47 | images.clear(); |
46 | } | 48 | } |
47 | 49 | ||
diff --git a/src/bin/cxx/image_blend_solid_fade_unscaled.cc b/src/bin/cxx/image_blend_solid_fade_unscaled.cc index 2e61e96..8abf031 100644 --- a/src/bin/cxx/image_blend_solid_fade_unscaled.cc +++ b/src/bin/cxx/image_blend_solid_fade_unscaled.cc | |||
@@ -42,6 +42,8 @@ static void _setup(void) | |||
42 | /* cleanup */ | 42 | /* cleanup */ |
43 | static void _cleanup(void) | 43 | static void _cleanup(void) |
44 | { | 44 | { |
45 | for (evas::image o : images) | ||
46 | o.visibility_set(false); | ||
45 | images.clear(); | 47 | images.clear(); |
46 | } | 48 | } |
47 | 49 | ||
diff --git a/src/bin/cxx/image_blend_solid_unscaled.cc b/src/bin/cxx/image_blend_solid_unscaled.cc index 8c97982..09c8f87 100644 --- a/src/bin/cxx/image_blend_solid_unscaled.cc +++ b/src/bin/cxx/image_blend_solid_unscaled.cc | |||
@@ -39,6 +39,8 @@ static void _setup(void) | |||
39 | /* cleanup */ | 39 | /* cleanup */ |
40 | static void _cleanup(void) | 40 | static void _cleanup(void) |
41 | { | 41 | { |
42 | for (evas::image o : images) | ||
43 | o.visibility_set(false); | ||
42 | images.clear(); | 44 | images.clear(); |
43 | } | 45 | } |
44 | 46 | ||