mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-13 09:10:20 +00:00
Warning cleanup
- ignoring const - declarations after statements - some C files didnt include own headers (risking them getting out of sync) Closes #1064
This commit is contained in:
committed by
TingPing
parent
9fb4eb5107
commit
f83d78dd28
@@ -62,12 +62,13 @@ cv_tabs_sizerequest (GtkWidget *viewport, GtkRequisition *requisition, chanview
|
||||
static void
|
||||
cv_tabs_sizealloc (GtkWidget *widget, GtkAllocation *allocation, chanview *cv)
|
||||
{
|
||||
GdkWindow *parent_win;
|
||||
GtkAdjustment *adj;
|
||||
GtkWidget *inner;
|
||||
gint viewport_size;
|
||||
|
||||
inner = ((tabview *)cv)->inner;
|
||||
GdkWindow *parent_win = gtk_widget_get_window (gtk_widget_get_parent (inner));
|
||||
parent_win = gtk_widget_get_window (gtk_widget_get_parent (inner));
|
||||
|
||||
if (cv->vertical)
|
||||
{
|
||||
|
||||
@@ -186,9 +186,10 @@ fe_tray_set_balloon (const char *title, const char *text)
|
||||
|
||||
if (!notify_is_initted())
|
||||
{
|
||||
GList* server_caps;
|
||||
notify_init(PACKAGE_NAME);
|
||||
|
||||
GList* server_caps = notify_get_server_caps ();
|
||||
server_caps = notify_get_server_caps ();
|
||||
if (g_list_find_custom (server_caps, "body-markup", (GCompareFunc)strcmp))
|
||||
{
|
||||
notify_text_strip_flags |= STRIP_ESCMARKUP;
|
||||
|
||||
@@ -3257,7 +3257,7 @@ gtk_xtext_render_stamp (GtkXText * xtext, textentry * ent,
|
||||
{
|
||||
textentry tmp_ent;
|
||||
int jo, ji, hs;
|
||||
int xsize, y;
|
||||
int xsize, y, emphasis;
|
||||
|
||||
/* trashing ent here, so make a backup first */
|
||||
memcpy (&tmp_ent, ent, sizeof (tmp_ent));
|
||||
@@ -3267,7 +3267,7 @@ gtk_xtext_render_stamp (GtkXText * xtext, textentry * ent,
|
||||
xtext->jump_out_offset = 0;
|
||||
xtext->jump_in_offset = 0;
|
||||
xtext->hilight_start = 0xffff; /* temp disable */
|
||||
int emphasis = 0;
|
||||
emphasis = 0;
|
||||
|
||||
if (xtext->mark_stamp)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user