diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2017-07-12 08:49:31 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2017-07-12 08:49:34 +0900 |
commit | 51369246466a689b3cc9798d22a73fb7fa86871f (patch) | |
tree | d9e45d9bd8e2d7e480ae3420eeca50775003c80c /gi/overrides | |
parent | 5f38b080de58de48d88b88ef55849ae296901613 (diff) | |
download | pygobject2-51369246466a689b3cc9798d22a73fb7fa86871f.tar.gz pygobject2-51369246466a689b3cc9798d22a73fb7fa86871f.tar.bz2 pygobject2-51369246466a689b3cc9798d22a73fb7fa86871f.zip |
Imported Upstream version 3.8.2
Change-Id: Ied3493b571ffbcc68a9078d5806b02d9511409e6
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'gi/overrides')
-rw-r--r-- | gi/overrides/Gtk.py | 2 | ||||
-rw-r--r-- | gi/overrides/Makefile.in | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/gi/overrides/Gtk.py b/gi/overrides/Gtk.py index ab09a26..9a6e1a3 100644 --- a/gi/overrides/Gtk.py +++ b/gi/overrides/Gtk.py @@ -115,7 +115,7 @@ class Editable(Gtk.Editable): def insert_text(self, text, position): return super(Editable, self).insert_text(text, -1, position) - get_selection_bounds = strip_boolean_result(Gtk.TextBuffer.get_selection_bounds, fail_ret=()) + get_selection_bounds = strip_boolean_result(Gtk.Editable.get_selection_bounds, fail_ret=()) Editable = override(Editable) diff --git a/gi/overrides/Makefile.in b/gi/overrides/Makefile.in index 59b1b35..feed8d4 100644 --- a/gi/overrides/Makefile.in +++ b/gi/overrides/Makefile.in @@ -55,8 +55,10 @@ DIST_COMMON = $(pygioverrides_PYTHON) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/as-ac-expand.m4 \ - $(top_srcdir)/m4/jhflags.m4 $(top_srcdir)/m4/python.m4 \ - $(top_srcdir)/configure.ac + $(top_srcdir)/m4/jhflags.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/python.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d |