Nah, even more rebranding

This commit is contained in:
Berke Viktor
2012-10-30 11:35:39 +01:00
parent 82936df2af
commit a51a69134b
45 changed files with 194 additions and 196 deletions

View File

@@ -64,9 +64,9 @@ url_save_tree (const char *fname, const char *mode, gboolean fullpath)
FILE *fd;
if (fullpath)
fd = xchat_fopen_file (fname, mode, XOF_FULLPATH);
fd = hexchat_fopen_file (fname, mode, XOF_FULLPATH);
else
fd = xchat_fopen_file (fname, mode, 0);
fd = hexchat_fopen_file (fname, mode, 0);
if (fd == NULL)
return;
@@ -80,7 +80,7 @@ url_save_node (char* url)
FILE *fd;
/* open <config>/url.log in append mode */
fd = xchat_fopen_file ("url.log", "a", 0);
fd = hexchat_fopen_file ("url.log", "a", 0);
if (fd == NULL)
{
return;
@@ -156,7 +156,7 @@ url_add (char *urltext, int len)
if (prefs.hex_url_grabber_limit > 0 && size >= prefs.hex_url_grabber_limit)
{
/* the loop is necessary to handle having the limit lowered while
xchat is running */
HexChat is running */
size -= prefs.hex_url_grabber_limit;
for(; size > 0; size--)
{