open tips file with rt

This commit is contained in:
Asbjørn Pettersen 1999-08-20 09:24:56 +00:00
parent f4fe52eda3
commit 6322090df3
4 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
Fri Aug 20 11:21:57 1999 ape@gandalf.spacetec.no (Asbjorn Pettersen)
* app/tips_dialog.c (read_tips_file): open tips file with "rt".
1999-08-19 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/Makefile.am

View file

@ -250,7 +250,7 @@ read_tips_file (char *filename)
char *tip = NULL;
char *str = NULL;
fp = fopen (filename, "r");
fp = fopen (filename, "rt");
if (!fp)
{
store_tip (_("Your GIMP tips file appears to be missing!\n"

View file

@ -250,7 +250,7 @@ read_tips_file (char *filename)
char *tip = NULL;
char *str = NULL;
fp = fopen (filename, "r");
fp = fopen (filename, "rt");
if (!fp)
{
store_tip (_("Your GIMP tips file appears to be missing!\n"

View file

@ -250,7 +250,7 @@ read_tips_file (char *filename)
char *tip = NULL;
char *str = NULL;
fp = fopen (filename, "r");
fp = fopen (filename, "rt");
if (!fp)
{
store_tip (_("Your GIMP tips file appears to be missing!\n"