atk 0.90.7 → 0.90.8
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.
- data/ChangeLog +13 -0
- data/ext/atk/extconf.rb +0 -2
- data/ext/atk/rbatkaction.c +7 -14
- data/ext/atk/rbatkcomponent.c +15 -31
- data/ext/atk/rbatkdocument.c +6 -12
- data/ext/atk/rbatkeditabletext.c +7 -14
- data/ext/atk/rbatkgobjectaccessible.c +2 -4
- data/ext/atk/rbatkhyperlink.c +8 -16
- data/ext/atk/rbatkhypertext.c +3 -6
- data/ext/atk/rbatkimage.c +4 -8
- data/ext/atk/rbatkimplementor.c +1 -2
- data/ext/atk/rbatknoopobject.c +1 -2
- data/ext/atk/rbatknoopobjectfactory.c +1 -2
- data/ext/atk/rbatkobject.c +10 -20
- data/ext/atk/rbatkobjectfactory.c +3 -6
- data/ext/atk/rbatkregistry.c +4 -8
- data/ext/atk/rbatkrelation.c +6 -12
- data/ext/atk/rbatkrelationset.c +7 -14
- data/ext/atk/rbatkselection.c +7 -14
- data/ext/atk/rbatkstate.c +2 -4
- data/ext/atk/rbatkstateset.c +11 -22
- data/ext/atk/rbatkstreamablecontent.c +3 -6
- data/ext/atk/rbatktable.c +29 -58
- data/ext/atk/rbatktext.c +22 -44
- data/ext/atk/rbatktextrange.c +4 -8
- data/ext/atk/rbatktextrectangle.c +10 -20
- data/ext/atk/rbatkutil.c +7 -14
- data/ext/atk/rbatkvalue.c +4 -8
- metadata +7 -10
- data/ext/atk/Makefile +0 -166
- data/ext/atk/rbatkversion.h +0 -25
- data/ext/atk/ruby-atk.pc +0 -3
data/ext/atk/rbatkversion.h
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/************************************************
|
3
|
-
|
4
|
-
rbatkversion.h -
|
5
|
-
|
6
|
-
This file was generated by mkmf-gnome2.rb.
|
7
|
-
|
8
|
-
************************************************/
|
9
|
-
|
10
|
-
#ifndef __RBATK_VERSION_H__
|
11
|
-
#define __RBATK_VERSION_H__
|
12
|
-
|
13
|
-
#define ATK_MAJOR_VERSION (2)
|
14
|
-
#define ATK_MINOR_VERSION (0)
|
15
|
-
#define ATK_MICRO_VERSION (0)
|
16
|
-
#define ATK_TAG_VERSION (b7)
|
17
|
-
|
18
|
-
#define ATK_CHECK_VERSION(major,minor,micro) \
|
19
|
-
(ATK_MAJOR_VERSION > (major) || \
|
20
|
-
(ATK_MAJOR_VERSION == (major) && ATK_MINOR_VERSION > (minor)) || \
|
21
|
-
(ATK_MAJOR_VERSION == (major) && ATK_MINOR_VERSION == (minor) && \
|
22
|
-
ATK_MICRO_VERSION >= (micro)))
|
23
|
-
|
24
|
-
|
25
|
-
#endif /* __RBATK_VERSION_H__ */
|
data/ext/atk/ruby-atk.pc
DELETED