minor cleanup (unused param)
This commit is contained in:
		
							parent
							
								
									0e7d8c4ce0
								
							
						
					
					
						commit
						d44ed632ae
					
				
							
								
								
									
										10
									
								
								termite.cc
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								termite.cc
									
									
									
									
									
								
							@ -8,10 +8,6 @@
 | 
				
			|||||||
#include <vte/vte.h>
 | 
					#include <vte/vte.h>
 | 
				
			||||||
#include <vte/vteaccess.h>
 | 
					#include <vte/vteaccess.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef __GNUC__
 | 
					 | 
				
			||||||
# define __attribute__(x)
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define CSI "\x1b["
 | 
					#define CSI "\x1b["
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// http://blog.dieweltistgarnichtso.net/constructing-a-regular-expression-that-matches-uris
 | 
					// http://blog.dieweltistgarnichtso.net/constructing-a-regular-expression-that-matches-uris
 | 
				
			||||||
@ -70,7 +66,7 @@ static gboolean button_press_cb(VteTerminal *vte, GdkEventButton *event, gboolea
 | 
				
			|||||||
static void beep_cb(GtkWidget *vte, gboolean *urgent_on_bell);
 | 
					static void beep_cb(GtkWidget *vte, gboolean *urgent_on_bell);
 | 
				
			||||||
static gboolean focus_cb(GtkWindow *window);
 | 
					static gboolean focus_cb(GtkWindow *window);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static gboolean add_to_list_store(char *key, void *value, GtkListStore *store);
 | 
					static gboolean add_to_list_store(char *key, void *, GtkListStore *store);
 | 
				
			||||||
static GtkTreeModel *create_completion_model(VteTerminal *vte);
 | 
					static GtkTreeModel *create_completion_model(VteTerminal *vte);
 | 
				
			||||||
static void search(VteTerminal *vte, const char *pattern, bool reverse);
 | 
					static void search(VteTerminal *vte, const char *pattern, bool reverse);
 | 
				
			||||||
static void overlay_show(search_panel_info *info, overlay_mode mode, bool complete);
 | 
					static void overlay_show(search_panel_info *info, overlay_mode mode, bool complete);
 | 
				
			||||||
@ -386,9 +382,7 @@ gboolean focus_cb(GtkWindow *window) {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
/* }}} */
 | 
					/* }}} */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
gboolean add_to_list_store(char *key,
 | 
					gboolean add_to_list_store(char *key, void *, GtkListStore *store) {
 | 
				
			||||||
                           __attribute__((unused)) void *value,
 | 
					 | 
				
			||||||
                           GtkListStore *store) {
 | 
					 | 
				
			||||||
    GtkTreeIter iter;
 | 
					    GtkTreeIter iter;
 | 
				
			||||||
    gtk_list_store_append(store, &iter);
 | 
					    gtk_list_store_append(store, &iter);
 | 
				
			||||||
    gtk_list_store_set(store, &iter, 0, key, -1);
 | 
					    gtk_list_store_set(store, &iter, 0, key, -1);
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user