mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-08-20 05:13:25 -07:00
Updated msys2
This commit is contained in:
parent
6a85995508
commit
f0dc1ea8b0
13308 changed files with 689276 additions and 46605 deletions
|
@ -1,6 +1,6 @@
|
|||
import os.path
|
||||
import gdb
|
||||
import glib
|
||||
import glib_gdb
|
||||
import sys
|
||||
|
||||
if sys.version_info[0] >= 3:
|
||||
|
@ -37,7 +37,7 @@ def g_type_to_name (gtype):
|
|||
else:
|
||||
typenode = lookup_fundamental_type (typenode)
|
||||
if typenode != None:
|
||||
return glib.g_quark_to_string (typenode["qname"])
|
||||
return glib_gdb.g_quark_to_string (typenode["qname"])
|
||||
return None
|
||||
|
||||
def is_g_type_instance (val):
|
||||
|
@ -161,7 +161,7 @@ class SignalFrame(FrameDecorator):
|
|||
|
||||
def get_detailed_signal_from_frame(self, frame, signal):
|
||||
detail = self.read_var (frame, "detail")
|
||||
detail = glib.g_quark_to_string (detail)
|
||||
detail = glib_gdb.g_quark_to_string (detail)
|
||||
if detail is not None:
|
||||
return signal + ":" + detail
|
||||
else:
|
|
@ -1,4 +1,4 @@
|
|||
<!ELEMENT schemalist (schema|enum)* >
|
||||
<!ELEMENT schemalist (schema|enum|flags)* >
|
||||
<!ATTLIST schemalist gettext-domain CDATA #IMPLIED >
|
||||
|
||||
<!ELEMENT schema (key|child|override)* >
|
||||
|
@ -47,7 +47,8 @@
|
|||
|
||||
<!-- range is only allowed for keys with numeric type -->
|
||||
<!ELEMENT range EMPTY >
|
||||
<!-- min and max must be parseable as values of the key type and min < max -->
|
||||
<!-- min and max must be parseable as values of the key type and
|
||||
min must be less than or equal to max -->
|
||||
<!ATTLIST range min CDATA #REQUIRED
|
||||
max CDATA #REQUIRED >
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue