Skip to content

Commit

Permalink
fixed global var
Browse files Browse the repository at this point in the history
  • Loading branch information
Ozzyboshi committed Jan 10, 2021
1 parent 3b40a8f commit 1a35f65
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([guake-indicator], [1.4.4], [gun101@email.it])
AC_INIT([guake-indicator], [1.4.5], [gun101@email.it])

AM_INIT_AUTOMAKE([-Wall -Werror])

Expand Down
1 change: 1 addition & 0 deletions src/guake-indicator-ayatana.c
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,7 @@ static void gtk3_build_menu(GtkInfo* gtkinfo)
funct_ptr=guake_open;

ptr->right_click_funct_ptr=funct_ptr;
gtk_widget_add_events(item, GDK_BUTTON_PRESS_MASK);
g_signal_connect(item,"button-press-event",G_CALLBACK(gtk3_detect_clickbutton),(gpointer) ptr);
g_signal_connect (item, "activate",G_CALLBACK (funct_ptr), (gpointer) ptr);
}
Expand Down
2 changes: 1 addition & 1 deletion src/guake-indicator-edit-menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ Boston, MA 02111-1307, USA.
#include "guake-indicator-dbus.h"
#include "guake-indicator-notify.h"
#include "guake-indicator-write-json.h"
#include "guake3.h"

GtkTreeStore* global_tree_view;
gboolean is_print_edit_menu_form_opened=FALSE;
gboolean is_print_custom_form_opened=FALSE;
char* customConfFile;

// Function to print edit menu form window
void print_edit_menu_form(GtkAction* action, gpointer user_data)
Expand Down
3 changes: 1 addition & 2 deletions src/guake-indicator-write-xml.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ Boston, MA 02111-1307, USA.
#include <guake-indicator-read-json.h>
#include <guake-indicator-xml.h>
#include "guake-indicator-edit-menu.h"

char* customConfFile;
#include <guake3.h>

int write_xml_cfg_file(GArray* grouphostlist)
{
Expand Down
2 changes: 1 addition & 1 deletion src/guake-indicator.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Boston, MA 02111-1307, USA.
#define GUAKE_INDICATOR_PLUGIN_DIR "plugins"
#define GUAKE_INDICATOR_ICON_DIR "icons/hicolor/256x256/apps/"
#define GUAKE_INDICATOR_DCONF_SCHEMA_ROOT "org.guake-indicator.data"
#define GUAKE_INDICATOR_VERSION "1.4.4"
#define GUAKE_INDICATOR_VERSION "1.4.5"

// Define default actions
#define GUAKE_INDICATOR_DEFAULT_MENUITEMS_ARRAY_SIZE 4
Expand Down

0 comments on commit 1a35f65

Please sign in to comment.