changeset 7471:68020c122954

[gaim-migrate @ 8084] Let's make all of these the same... Is ' valid for stuff like this? There are other places in log.c that use ' committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 11 Nov 2003 00:28:05 +0000
parents ad6435eccf2b
children 24201ff324f8
files src/log.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/log.c	Tue Nov 11 00:25:06 2003 +0000
+++ b/src/log.c	Tue Nov 11 00:28:05 2003 +0000
@@ -458,7 +458,7 @@
 	char *read, *minus_header;
 	*flags = GAIM_LOG_READ_NO_NEWLINE;
 	if (!log->logger_data)
-		return g_strdup("<font color='red'><b>log->logger_data was NULL!</b></font>");
+		return g_strdup("<font color=\"red\"><b>log->logger_data was NULL!</b></font>");
 	if (g_file_get_contents((char *)log->logger_data, &read, NULL, NULL)) {
 		minus_header = strchr(read, '\n');
 		if (!minus_header)
@@ -468,7 +468,7 @@
 		g_free(read);
 		return minus_header;
 	}
-	return g_strdup(_("<font color='red'><b>Could not read file: %s</b></font>"));
+	return g_strdup(_("<font color=\"red\"><b>Could not read file: %s</b></font>"));
 }
 
 static GaimLogLogger html_logger = {
@@ -566,7 +566,7 @@
 	char *read, *minus_header;
 	*flags = 0;
 	if (!log->logger_data)
-		return g_strdup("<font color='red'><b>log->logger_data was NULL!</b></font>");
+		return g_strdup("<font color=\"red\"><b>log->logger_data was NULL!</b></font>");
 	if (g_file_get_contents((char *)log->logger_data, &read, NULL, NULL)) {
 		minus_header = strchr(read, '\n');
 		if (!minus_header)
@@ -576,7 +576,7 @@
 		g_free(read);
 		return minus_header;
 	}
-        return g_strdup(_("<font color='red'><b>Could not read file: %s</b></font>"));
+        return g_strdup(_("<font color=\"red\"><b>Could not read file: %s</b></font>"));
 }
 
 static GaimLogLogger txt_logger = {