talkatu/talkatu

Parents fecc8cd3717d
Children 57bbdc5198e9
wire up get property for the editors buffer property and fix a typo
--- a/talkatu/talkatueditor.c Sat Jul 13 04:47:52 2019 -0500
+++ b/talkatu/talkatueditor.c Sun Jul 14 23:57:41 2019 -0500
@@ -96,6 +96,9 @@
case PROP_TOOLBAR:
g_value_set_object(value, talkatu_editor_get_toolbar(editor));
break;
+ case PROP_BUFFER:
+ g_value_set_object(value, talkatu_editor_get_buffer(editor));
+ break;
case PROP_SHOW_TOOLBAR:
g_value_set_boolean(value, talkatu_editor_get_toolbar_visible(editor));
break;
--- a/talkatu/talkatuview.c Sat Jul 13 04:47:52 2019 -0500
+++ b/talkatu/talkatuview.c Sun Jul 14 23:57:41 2019 -0500
@@ -523,11 +523,11 @@
*
* Emits the signal that @view is trying to send a message. This is used for
* cases like the optional send button in #TalkatuEditor and other instances
- * where the user has performed an actions to send a message.
+ * where the user has performed an action to send a message.
*/
void
talkatu_view_send_message(TalkatuView *view) {
g_return_if_fail(TALKATU_IS_VIEW(view));
g_signal_emit(view, signals[SIG_SEND_MESSAGE], 0);
-}
\ No newline at end of file
+}