mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-22 09:12:22 -05:00
Eliminate some more warnings
This commit is contained in:
parent
284dbfbe3d
commit
cb0f6c8c91
@ -166,7 +166,7 @@ list_delentry (GSList ** list, char *name)
|
||||
}
|
||||
|
||||
char *
|
||||
cfg_get_str (char *cfg, char *var, char *dest, int dest_len)
|
||||
cfg_get_str (char *cfg, const char *var, char *dest, int dest_len)
|
||||
{
|
||||
char buffer[128]; /* should be plenty for a variable name */
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
extern char *xdir_fs;
|
||||
extern char *xdir_utf;
|
||||
|
||||
char *cfg_get_str (char *cfg, char *var, char *dest, int dest_len);
|
||||
char *cfg_get_str (char *cfg, const char *var, char *dest, int dest_len);
|
||||
int cfg_get_bool (char *var);
|
||||
int cfg_get_int_with_result (char *cfg, char *var, int *result);
|
||||
int cfg_get_int (char *cfg, char *var);
|
||||
|
@ -1147,7 +1147,7 @@ main (int argc, char *argv[])
|
||||
if (hextray_mode ())
|
||||
{
|
||||
/* FindWindow() doesn't support wildcards so we check all the open windows */
|
||||
EnumWindows (enum_windows_impl, NULL);
|
||||
EnumWindows (enum_windows_impl, (LPARAM) NULL);
|
||||
return 0;
|
||||
}
|
||||
else
|
||||
|
@ -1053,7 +1053,7 @@ server_read_child (GIOChannel *source, GIOCondition condition, server *serv)
|
||||
static int
|
||||
server_cleanup (server * serv)
|
||||
{
|
||||
fe_set_lag (serv, 0.0);
|
||||
fe_set_lag (serv, 0);
|
||||
|
||||
if (serv->iotag)
|
||||
{
|
||||
|
@ -206,7 +206,7 @@ _SSL_get_cert_info (struct cert_info *cert_info, SSL * ssl)
|
||||
struct chiper_info *
|
||||
_SSL_get_cipher_info (SSL * ssl)
|
||||
{
|
||||
SSL_CIPHER *c;
|
||||
const SSL_CIPHER *c;
|
||||
|
||||
|
||||
c = SSL_get_current_cipher (ssl);
|
||||
|
@ -178,7 +178,7 @@ url_add (char *urltext, int len)
|
||||
2.4.4 release. */
|
||||
|
||||
int
|
||||
url_check_word (char *word, int len)
|
||||
url_check_word (const char *word, int len)
|
||||
{
|
||||
#define D(x) (x), ((sizeof (x)) - 1)
|
||||
static const struct {
|
||||
|
@ -14,7 +14,7 @@ extern void *url_tree;
|
||||
|
||||
void url_clear (void);
|
||||
void url_save_tree (const char *fname, const char *mode, gboolean fullpath);
|
||||
int url_check_word (char *word, int len);
|
||||
int url_check_word (const char *word, int len);
|
||||
void url_check_line (char *buf, int len);
|
||||
|
||||
#endif
|
||||
|
@ -573,7 +573,7 @@ fe_get_str (char *msg, char *def, void *callback, void *userdata)
|
||||
NULL);
|
||||
gtk_box_set_homogeneous (GTK_BOX (GTK_DIALOG (dialog)->vbox), TRUE);
|
||||
|
||||
if ((int*) userdata == 1) /* nick box is usually on the very bottom, make it centered */
|
||||
if ((int) userdata == 1) /* nick box is usually on the very bottom, make it centered */
|
||||
{
|
||||
gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_CENTER);
|
||||
}
|
||||
|
@ -2641,7 +2641,7 @@ static void
|
||||
mg_nickclick_cb (GtkWidget *button, gpointer userdata)
|
||||
{
|
||||
fe_get_str (_("Enter new nickname:"), current_sess->server->nick,
|
||||
mg_change_nick, 1);
|
||||
mg_change_nick, (void *) 1);
|
||||
}
|
||||
|
||||
/* make sure chanview and userlist positions are sane */
|
||||
|
@ -376,7 +376,7 @@ tray_toggle_visibility (gboolean force_hide)
|
||||
/* ph may have an invalid context now */
|
||||
hexchat_set_context (ph, hexchat_find_context (ph, NULL, NULL));
|
||||
|
||||
win = hexchat_get_info (ph, "gtkwin_ptr");
|
||||
win = GTK_WINDOW (hexchat_get_info (ph, "gtkwin_ptr"));
|
||||
|
||||
tray_stop_flash ();
|
||||
tray_reset_counts ();
|
||||
|
@ -2179,7 +2179,7 @@ gtk_xtext_set_clip_owner (GtkWidget * xtext, GdkEventButton * event)
|
||||
void
|
||||
gtk_xtext_copy_selection (GtkXText *xtext)
|
||||
{
|
||||
gtk_xtext_set_clip_owner (xtext, NULL);
|
||||
gtk_xtext_set_clip_owner (GTK_WIDGET (xtext), NULL);
|
||||
}
|
||||
|
||||
static void
|
||||
@ -4057,7 +4057,7 @@ gtk_xtext_load_trans (GtkXText * xtext)
|
||||
ReleaseDC (hwnd, hdc);
|
||||
|
||||
gdk_drawable_get_size (GTK_WIDGET (xtext)->window, &width, &height);
|
||||
img = gdk_image_get (GTK_WIDGET (xtext)->window, 0, 0, width+128, height);
|
||||
img = gdk_drawable_get_image (GTK_WIDGET (xtext)->window, 0, 0, width+128, height);
|
||||
xtext->pixmap = win32_tint (xtext, img, img->width, img->height);
|
||||
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user