Update of /cvsroot/ddccontrol/ddccontrol/src/gddccontrol
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv20190/gddccontrol
Modified Files:
notebook.c
Log Message:
Fix gcc 4.1.1 compilation warning.
Index: notebook.c
===================================================================
RCS file: /cvsroot/ddccontrol/ddccontrol/src/gddccontrol/notebook.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- notebook.c 26 Apr 2006 16:14:55 -0000 1.30
+++ notebook.c 19 Jun 2006 18:44:10 -0000 1.31
@@ -678,13 +678,13 @@
"using a generic profile for your monitor's manufacturer. Some controls "
"may not be supported, or may not work as expected.\n"));
}
- else if (mon->fallback == 2) {
+ else { /*if (mon->fallback == 2) {*/
message = g_strdup(_(
"There is no support for your monitor in the database, but ddccontrol is "
"using a basic generic profile. Many controls will not be supported, and "
"some controls may not work as expected.\n"));
}
-
+
gchar* tmp = g_strconcat("<span size='large' weight='ultrabold'>", _("Warning!"), "</span>\n\n",
message, _(
"Please update ddccontrol-db, or, if you are already using the latest "
|