mirror of https://github.com/GNOME/gimp.git
open tips file with rt
This commit is contained in:
parent
f4fe52eda3
commit
6322090df3
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue