fix for wxuse_iostreamh
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1329 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -402,7 +402,11 @@ void WriteTexReferences(char *filename)
|
|||||||
|
|
||||||
void ReadTexReferences(char *filename)
|
void ReadTexReferences(char *filename)
|
||||||
{
|
{
|
||||||
|
#if !wxUSE_IOSTREAMH && __WXMSW__
|
||||||
|
ifstream istr(filename, ios::in);
|
||||||
|
#else
|
||||||
ifstream istr(filename, ios::nocreate | ios::in);
|
ifstream istr(filename, ios::nocreate | ios::in);
|
||||||
|
#endif
|
||||||
if (istr.bad()) return;
|
if (istr.bad()) return;
|
||||||
|
|
||||||
char label[100];
|
char label[100];
|
||||||
@@ -566,7 +570,11 @@ void BibReadValue(istream& istr, char *buffer, bool ignoreBraces = TRUE,
|
|||||||
bool ReadBib(char *filename)
|
bool ReadBib(char *filename)
|
||||||
{
|
{
|
||||||
char buf[300];
|
char buf[300];
|
||||||
|
#if !wxUSE_IOSTREAMH && __WXMSW__
|
||||||
|
ifstream istr(filename, ios::in);
|
||||||
|
#else
|
||||||
ifstream istr(filename, ios::nocreate | ios::in);
|
ifstream istr(filename, ios::nocreate | ios::in);
|
||||||
|
#endif
|
||||||
if (istr.bad()) return FALSE;
|
if (istr.bad()) return FALSE;
|
||||||
|
|
||||||
BibLine = 1;
|
BibLine = 1;
|
||||||
@@ -1283,7 +1291,11 @@ char *RegisterSetting(char *settingName, char *settingValue, bool interactive)
|
|||||||
|
|
||||||
bool ReadCustomMacros(char *filename)
|
bool ReadCustomMacros(char *filename)
|
||||||
{
|
{
|
||||||
|
#if !wxUSE_IOSTREAMH && __WXMSW__
|
||||||
|
ifstream istr(filename, ios::in);
|
||||||
|
#else
|
||||||
ifstream istr(filename, ios::nocreate | ios::in);
|
ifstream istr(filename, ios::nocreate | ios::in);
|
||||||
|
#endif
|
||||||
if (istr.bad()) return FALSE;
|
if (istr.bad()) return FALSE;
|
||||||
|
|
||||||
CustomMacroList.Clear();
|
CustomMacroList.Clear();
|
||||||
|
Reference in New Issue
Block a user