Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gnome-builder
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Günther Wagner
gnome-builder
Commits
215f06e6
Commit
215f06e6
authored
May 18, 2020
by
Christian Hergert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dspy: fix read/write detection
Fixes #1219
parent
e3ca7c0b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/plugins/dspy/libdspy/dspy-node.c
src/plugins/dspy/libdspy/dspy-node.c
+1
-1
No files found.
src/plugins/dspy/libdspy/dspy-node.c
View file @
215f06e6
...
...
@@ -405,7 +405,7 @@ _dspy_property_info_to_string (DspyPropertyInfo *info)
sig
=
_dspy_signature_humanize
(
info
->
signature
);
if
(
info
->
flags
==
(
G_DBUS_PROPERTY_INFO_FLAGS_
WRIT
ABLE
|
G_DBUS_PROPERTY_INFO_FLAGS_WRITABLE
))
if
(
info
->
flags
==
(
G_DBUS_PROPERTY_INFO_FLAGS_
READ
ABLE
|
G_DBUS_PROPERTY_INFO_FLAGS_WRITABLE
))
rw
=
_
(
"read/write"
);
else
if
(
info
->
flags
&
G_DBUS_PROPERTY_INFO_FLAGS_WRITABLE
)
rw
=
_
(
"write-only"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment