-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The version of gi-docgen applies the restrict rule for the version expression. In the rule, the dot following to the number causes failure. This commit fixes the failure. Signed-off-by: Takashi Sakamoto <[email protected]>
- Loading branch information
Showing
5 changed files
with
29 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,7 +107,7 @@ static void alsaseq_remove_filter_class_init(ALSASeqRemoveFilterClass *klass) | |
* The set of flags to filter events. They decide how to evaluate included data at call of | ||
* [[email protected]_events]. | ||
* | ||
* Since: 0.3. | ||
* Since: 0.3 | ||
*/ | ||
seq_remove_filter_props[SEQ_REMOVE_FILTER_PROP_FLAGS] = | ||
g_param_spec_flags("flags", "flags", | ||
|
@@ -122,7 +122,7 @@ static void alsaseq_remove_filter_class_init(ALSASeqRemoveFilterClass *klass) | |
* The numeric identifier of queue as filter condition. This is always evaluated at call of | ||
* [[email protected]_events]. | ||
* | ||
* Since: 0.3. | ||
* Since: 0.3 | ||
*/ | ||
seq_remove_filter_props[SEQ_REMOVE_FILTER_PROP_QUEUE_ID] = | ||
g_param_spec_uchar("queue-id", "queue-id", | ||
|
@@ -137,7 +137,7 @@ static void alsaseq_remove_filter_class_init(ALSASeqRemoveFilterClass *klass) | |
* The destionation of event as filter condition. This is evaluated with | ||
* [flags@RemoveFilterFlag].DEST at call of [[email protected]_events]. | ||
* | ||
* Since: 0.3. | ||
* Since: 0.3 | ||
*/ | ||
seq_remove_filter_props[SEQ_REMOVE_FILTER_PROP_DST] = | ||
g_param_spec_boxed("destination", "destination", | ||
|
@@ -151,7 +151,7 @@ static void alsaseq_remove_filter_class_init(ALSASeqRemoveFilterClass *klass) | |
* The channel of event as filter condition. This is evaluated with | ||
* [flags@RemoveFilterFlag].DEST_CHANNEL at call of [[email protected]_events]. | ||
* | ||
* Since: 0.3. | ||
* Since: 0.3 | ||
*/ | ||
seq_remove_filter_props[SEQ_REMOVE_FILTER_PROP_CHANNEL] = | ||
g_param_spec_uchar("channel", "channel", | ||
|
@@ -166,7 +166,7 @@ static void alsaseq_remove_filter_class_init(ALSASeqRemoveFilterClass *klass) | |
* The type of event as filter condition. This is evaluated with | ||
* [flags@RemoveFilterFlag].EVENT_TYPE at call of [[email protected]_events]. | ||
* | ||
* Since: 0.3. | ||
* Since: 0.3 | ||
*/ | ||
seq_remove_filter_props[SEQ_REMOVE_FILTER_PROP_EVENT_TYPE] = | ||
g_param_spec_enum("event-type", "event-type", | ||
|
@@ -181,7 +181,7 @@ static void alsaseq_remove_filter_class_init(ALSASeqRemoveFilterClass *klass) | |
* The tag of event as filter condition. This is evaluated with | ||
* [flags@RemoveFilterFlag].TAG_MATCH at call of [[email protected]_events]. | ||
* | ||
* Since: 0.3. | ||
* Since: 0.3 | ||
*/ | ||
seq_remove_filter_props[SEQ_REMOVE_FILTER_PROP_TAG] = | ||
g_param_spec_char("tag", "tag", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters