Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Vcsn
Vaucanson 1
Commits
7ea984b1
Commit
7ea984b1
authored
Aug 04, 2009
by
Florent D'Halluin
Browse files
[yavgui] GState: mark getter as const.
* yavgui/src/g_state.hh, * yavgui/src/g_state.hxx: Do that.
parent
1857fd38
Changes
3
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
7ea984b1
2009-08-04 d-halluin <d-halluin@lrde.epita.fr>
[yavgui] GState: mark getter as const.
* yavgui/src/g_state.hh,
* yavgui/src/g_state.hxx: Do that.
2009-08-04 d-halluin <d-halluin@lrde.epita.fr>
[yavgui] Enable transition deletion.
...
...
yavgui/src/g_state.hh
View file @
7ea984b1
...
...
@@ -78,7 +78,7 @@ namespace gui
inline
void
set_final_entry
(
QString
final_entry
);
inline
QString
final_entry
();
inline
int
index
();
inline
int
index
()
const
;
public
slots
:
void
refresh
();
...
...
yavgui/src/g_state.hxx
View file @
7ea984b1
...
...
@@ -85,7 +85,8 @@ namespace gui
final_entry_
=
final_entry
;
}
int
GState
::
index
()
int
GState
::
index
()
const
{
return
index_
;
}
...
...
Write
Preview
Supports
Markdown
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