Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Gxml
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Canek Peláez Valdés
Gxml
Commits
7c7bca3e
An error occurred while fetching merge requests data.
Commit
7c7bca3e
authored
6 years ago
by
Daniel Espinosa
Browse files
Options
Downloads
Patches
Plain Diff
TokenList: renamed from GDomTokenList
parent
c6cdcfa1
Branches
Branches containing commit
Tags
Tags containing commit
Loading
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
gxml/GDomCollections.vala
+1
-1
1 addition, 1 deletion
gxml/GDomCollections.vala
gxml/GomElement.vala
+1
-1
1 addition, 1 deletion
gxml/GomElement.vala
gxml/XElement.vala
+1
-1
1 addition, 1 deletion
gxml/XElement.vala
with
3 additions
and
3 deletions
gxml/GDomCollections.vala
+
1
−
1
View file @
7c7bca3e
...
...
@@ -25,7 +25,7 @@ using Gee;
/**
* DOM4 Setteable token list, powered by libxml2 library.
*/
public
class
GXml
.
GDomSettableTokenList
:
GXml
.
GDom
TokenList
,
GXml
.
DomSettableTokenList
{
public
class
GXml
.
GDomSettableTokenList
:
GXml
.
TokenList
,
GXml
.
DomSettableTokenList
{
public
string
value
{
owned
get
{
return
to_string
();
}
set
{
...
...
This diff is collapsed.
Click to expand it.
gxml/GomElement.vala
+
1
−
1
View file @
7c7bca3e
...
...
@@ -301,7 +301,7 @@ public class GXml.GomElement : GomNode,
*/
public
DomTokenList
class
_list
{
owned
get
{
return
new
G
Dom
TokenList
(
this
,
"class"
);
return
new
G
Xml
.
TokenList
(
this
,
"class"
);
}
}
...
...
This diff is collapsed.
Click to expand it.
gxml/XElement.vala
+
1
−
1
View file @
7c7bca3e
...
...
@@ -216,7 +216,7 @@ public class GXml.XElement : GXml.XNonDocumentChildNode,
}
public
DomTokenList
class
_list
{
owned
get
{
return
new
G
Dom
TokenList
(
this
,
"class"
);
return
new
G
Xml
.
TokenList
(
this
,
"class"
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment