mirror of
https://github.com/ToshioCP/Gtk4-tutorial.git
synced 2024-11-16 19:50:35 +01:00
Bug fixed.
This commit is contained in:
parent
18a22b63c9
commit
06c3d7bd7e
2 changed files with 4 additions and 2 deletions
|
@ -156,7 +156,8 @@ The type of the object is the second argument of `g_signal_newv`.
|
|||
The relationship between the signal and object (type) is made up when the signal is generated.
|
||||
|
||||
`g_signal_emit` is used to emit the signal.
|
||||
The following is extract from `tfetexties.c`.
|
||||
The following lines are extracted from `tfetextview.c`.
|
||||
Each line is quoted from a different line.
|
||||
|
||||
~~~C
|
||||
g_signal_emit (tv, tfe_text_view_signals[CHANGE_FILE], 0);
|
||||
|
|
|
@ -126,7 +126,8 @@ The type of the object is the second argument of `g_signal_newv`.
|
|||
The relationship between the signal and object (type) is made up when the signal is generated.
|
||||
|
||||
`g_signal_emit` is used to emit the signal.
|
||||
The following is extract from `tfetexties.c`.
|
||||
The following lines are extracted from `tfetextview.c`.
|
||||
Each line is quoted from a different line.
|
||||
|
||||
~~~C
|
||||
g_signal_emit (tv, tfe_text_view_signals[CHANGE_FILE], 0);
|
||||
|
|
Loading…
Reference in a new issue