diff options
author | lukefromdc <[email protected]> | 2024-11-22 01:37:30 -0500 |
---|---|---|
committer | Luke from DC <[email protected]> | 2024-11-27 03:49:44 +0000 |
commit | 96c3e4b883961fdeb6cc032388da6f5e7b942d58 (patch) | |
tree | 74e051e1ffba48b54160a0e84525c6a75bbfeaca /stickynotes/stickynotes.h | |
parent | b6c248aad24637a75e50d56280860d3a8a308dc1 (diff) | |
download | mate-applets-96c3e4b883961fdeb6cc032388da6f5e7b942d58.tar.bz2 mate-applets-96c3e4b883961fdeb6cc032388da6f5e7b942d58.tar.xz |
Replace GtkSourceView with GtkTextView
As Stickynotes doesn't seem to work with GtkSourceView anymore
Diffstat (limited to 'stickynotes/stickynotes.h')
-rw-r--r-- | stickynotes/stickynotes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stickynotes/stickynotes.h b/stickynotes/stickynotes.h index 3a524189..3edea16a 100644 --- a/stickynotes/stickynotes.h +++ b/stickynotes/stickynotes.h @@ -50,7 +50,7 @@ typedef struct GtkWidget *w_resize_se; /* Sticky Note resize button (south east) */ GtkWidget *w_resize_sw; /* Sticky Note resize button (south west) */ - GtkSourceBuffer *buffer; /* Sticky Note text buffer for undo/redo */ + GtkTextBuffer *buffer; /* Sticky Note text buffer for undo/redo */ GtkCheckMenuItem *w_lock_toggle_item; /* Lock item in the popup menu */ |