gtk2 3.2.4-x86-mingw32 → 3.2.5-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/gtk2/rbgtkliststore.c +6 -2
- data/ext/gtk2/rbgtktreestore.c +6 -2
- data/ext/gtk2/rbgtktreeviewcolumn.c +6 -2
- data/lib/2.2/gtk2.so +0 -0
- data/lib/2.3/gtk2.so +0 -0
- data/lib/2.4/gtk2.so +0 -0
- data/lib/2.5/gtk2.so +0 -0
- data/vendor/local/bin/gtk-demo.exe +0 -0
- data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
- data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
- data/vendor/local/bin/libgailutil-18.dll +0 -0
- data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
- data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll.a +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll.a +0 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.dll.a +0 -0
- data/vendor/local/lib/libgailutil.dll.a +0 -0
- data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a117d0e42b98287f7d73b764ce89b1542e1bb9987bf88de848b65b3c85b5168f
|
4
|
+
data.tar.gz: 13e38d12ffd9fe7ba105fc8ea94764d004e21362b279d75765235e46fcec25f5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f676cc5cb21e1e55b7593feb4e88fcab1b7a4bd37d62e622f83e2d70929515dc64cb1e7d804636a959773e25656d55595a86b5f0d1e551266b06d7641a84ba13
|
7
|
+
data.tar.gz: e4cccc2a75b005d8fe1a8b38c72f985a48c45e055d900698c7ace5bcac54b09f9ad552a83eba2a4c1b8bb0a0b073c0d8ceee34a7a967c7a50a7b222e833b346c
|
data/ext/gtk2/rbgtkliststore.c
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
2
|
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
3
|
+
* Copyright (C) 2011-2018 Ruby-GNOME2 Project Team
|
4
4
|
* Copyright (C) 2002-2005 Masao Mutoh
|
5
5
|
*
|
6
6
|
* This library is free software; you can redistribute it and/or
|
@@ -333,7 +333,11 @@ rg_append(VALUE self)
|
|
333
333
|
static VALUE
|
334
334
|
rg_clear(VALUE self)
|
335
335
|
{
|
336
|
-
|
336
|
+
static VALUE rb_cGtkTreeIter = Qnil;
|
337
|
+
if (NIL_P(rb_cGtkTreeIter)) {
|
338
|
+
rb_cGtkTreeIter = GTYPE2CLASS(GTK_TYPE_TREE_ITER);
|
339
|
+
}
|
340
|
+
rbgobj_object_remove_relatives(self, rb_cGtkTreeIter);
|
337
341
|
gtk_list_store_clear(_SELF(self));
|
338
342
|
return self;
|
339
343
|
}
|
data/ext/gtk2/rbgtktreestore.c
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
2
|
/*
|
3
|
-
* Copyright (C) 2011-
|
3
|
+
* Copyright (C) 2011-2018 Ruby-GNOME2 Project Team
|
4
4
|
* Copyright (C) 2002-2006 Masao Mutoh
|
5
5
|
*
|
6
6
|
* This library is free software; you can redistribute it and/or
|
@@ -273,7 +273,11 @@ rg_iter_depth(VALUE self, VALUE iter)
|
|
273
273
|
static VALUE
|
274
274
|
rg_clear(VALUE self)
|
275
275
|
{
|
276
|
-
|
276
|
+
static VALUE rb_cGtkTreeIter = Qnil;
|
277
|
+
if (NIL_P(rb_cGtkTreeIter)) {
|
278
|
+
rb_cGtkTreeIter = GTYPE2CLASS(GTK_TYPE_TREE_ITER);
|
279
|
+
}
|
280
|
+
rbgobj_object_remove_relatives(self, rb_cGtkTreeIter);
|
277
281
|
gtk_tree_store_clear(_SELF(self));
|
278
282
|
return self;
|
279
283
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
2
|
/*
|
3
|
-
* Copyright (C) 2011
|
3
|
+
* Copyright (C) 2011-2018 Ruby-GNOME2 Project Team
|
4
4
|
* Copyright (C) 2002-2004 Masao Mutoh
|
5
5
|
*
|
6
6
|
* This library is free software; you can redistribute it and/or
|
@@ -83,7 +83,11 @@ rg_pack_end(VALUE self, VALUE cell, VALUE expand)
|
|
83
83
|
static VALUE
|
84
84
|
rg_clear(VALUE self)
|
85
85
|
{
|
86
|
-
|
86
|
+
static VALUE rb_cGtkCellRenderer = Qnil;
|
87
|
+
if (NIL_P(rb_cGtkCellRenderer)) {
|
88
|
+
rb_cGtkCellRenderer = GTYPE2CLASS(GTK_TYPE_CELL_RENDERER);
|
89
|
+
}
|
90
|
+
rbgobj_object_remove_relatives(self, rb_cGtkCellRenderer);
|
87
91
|
gtk_tree_view_column_clear(_SELF(self));
|
88
92
|
return self;
|
89
93
|
}
|
data/lib/2.2/gtk2.so
CHANGED
Binary file
|
data/lib/2.3/gtk2.so
CHANGED
Binary file
|
data/lib/2.4/gtk2.so
CHANGED
Binary file
|
data/lib/2.5/gtk2.so
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gtk2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.
|
4
|
+
version: 3.2.5
|
5
5
|
platform: x86-mingw32
|
6
6
|
authors:
|
7
7
|
- The Ruby-GNOME2 Project Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-05-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: atk
|
@@ -16,42 +16,42 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.2.
|
19
|
+
version: 3.2.5
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.2.
|
26
|
+
version: 3.2.5
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: pango
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 3.2.
|
33
|
+
version: 3.2.5
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 3.2.
|
40
|
+
version: 3.2.5
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: gdk_pixbuf2
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - '='
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 3.2.
|
47
|
+
version: 3.2.5
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - '='
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 3.2.
|
54
|
+
version: 3.2.5
|
55
55
|
description: Ruby/GTK2 is a Ruby binding of GTK+-2.x.
|
56
56
|
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
57
57
|
executables: []
|