diff options
author | rbuj <[email protected]> | 2022-08-06 20:01:41 +0200 |
---|---|---|
committer | Luke from DC <[email protected]> | 2022-08-18 21:05:02 +0000 |
commit | 8c06942386ee04905eeee309bea9a5e0284e7c9e (patch) | |
tree | daca1ec57241afe5ed3835cff00ec9d136eb8898 | |
parent | d785377044f6bafd927722e1c03175e854870b75 (diff) | |
download | mate-applets-8c06942386ee04905eeee309bea9a5e0284e7c9e.tar.bz2 mate-applets-8c06942386ee04905eeee309bea9a5e0284e7c9e.tar.xz |
stickynotes: bump gtksourceview 4
GtkSourceBuffer provides the ability to undo or redo the change
to the note text-body. pluma uses gtksourceview 4, so we don't
need to depend on two versions.
-rw-r--r-- | .build.yml | 8 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | stickynotes/sticky-notes-note.ui | 2 | ||||
-rw-r--r-- | stickynotes/stickynotes.c | 2 |
4 files changed, 6 insertions, 8 deletions
@@ -10,7 +10,7 @@ requires: - gcc - git - gucharmap - - gtksourceview3 + - gtksourceview4 - itstool - libgtop - libnotify @@ -39,7 +39,7 @@ requires: - libdbus-glib-1-dev - libglib2.0-dev - libgtk-3-dev - - libgtksourceview-3.0-dev + - libgtksourceview-4-dev - libgtop2-dev - libgucharmap-2-90-dev - libiw-dev @@ -67,7 +67,7 @@ requires: - cppcheck-htmlreport - gcc - git - - gtksourceview3-devel + - gtksourceview4-devel - gucharmap-devel - kernel-tools-libs-devel - libgtop2-devel @@ -101,7 +101,7 @@ requires: - libdbus-glib-1-dev - libglib2.0-dev - libgtk-3-dev - - libgtksourceview-3.0-dev + - libgtksourceview-4-dev - libgtop2-dev - libgucharmap-2-90-dev - libiw-dev diff --git a/configure.ac b/configure.ac index a53924cc..ff340338 100644 --- a/configure.ac +++ b/configure.ac @@ -296,7 +296,7 @@ AC_ARG_ENABLE([stickynotes], enable_stickynotes=$enableval, enable_stickynotes=yes) if test "x$enable_stickynotes" = "xyes"; then - PKG_CHECK_MODULES(STICKYNOTES, gtksourceview-3.0, + PKG_CHECK_MODULES(STICKYNOTES, gtksourceview-4, have_gtksourceview=yes, have_gtksourceview=no) if test "x$enable_stickynotes" = "xyes" -a "x$have_gtksourceview" = "xno"; then diff --git a/stickynotes/sticky-notes-note.ui b/stickynotes/sticky-notes-note.ui index d8a69587..8f8a1781 100644 --- a/stickynotes/sticky-notes-note.ui +++ b/stickynotes/sticky-notes-note.ui @@ -2,7 +2,7 @@ <!-- Generated with glade 3.22.1 --> <interface> <requires lib="gtk+" version="3.22"/> - <requires lib="gtksourceview" version="3.0"/> + <requires lib="gtksourceview" version="4.0"/> <object class="GtkSourceBuffer" id="body_buffer"> <property name="max_undo_levels">-1</property> </object> diff --git a/stickynotes/stickynotes.c b/stickynotes/stickynotes.c index 17b6f347..255fb677 100644 --- a/stickynotes/stickynotes.c +++ b/stickynotes/stickynotes.c @@ -27,8 +27,6 @@ #include <string.h> #include <sys/stat.h> -#include <gtksourceview/gtksource.h> - #include "stickynotes.h" #include "stickynotes_callbacks.h" #include "util.h" |