diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-09-09 07:31:47 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-09-09 07:31:47 +0200 |
commit | 547c17bb1c2d3ae6c187bf2082b6b5ada3f124c1 (patch) | |
tree | f840a9df4abd05989095506f404e67312cfc4718 /iup/src/win | |
parent | d5217aa87d0ff5e379ec0ff2c65633e8026befc8 (diff) |
Fixing iupStrToMac.
Diffstat (limited to 'iup/src/win')
-rwxr-xr-x | iup/src/win/iupwin_text.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/iup/src/win/iupwin_text.c b/iup/src/win/iupwin_text.c index 2a61724..c0e7115 100755 --- a/iup/src/win/iupwin_text.c +++ b/iup/src/win/iupwin_text.c @@ -608,7 +608,7 @@ static int winTextSetValueAttrib(Ihandle* ih, const char* value) if (ih->data->is_multiline) { if (ih->data->has_formatting) - str = iupStrToMac(str); + iupStrToMac(str); else str = iupStrToDos(str); } @@ -662,7 +662,7 @@ static int winTextSetSelectedTextAttrib(Ihandle* ih, const char* value) if (ih->data->is_multiline) { if (ih->data->has_formatting) - str = iupStrToMac(str); + iupStrToMac(str); else str = iupStrToDos(str); } @@ -860,7 +860,7 @@ static int winTextSetInsertAttrib(Ihandle* ih, const char* value) if (ih->data->is_multiline) { if (ih->data->has_formatting) - str = iupStrToMac(str); + iupStrToMac(str); else str = iupStrToDos(str); } @@ -883,7 +883,7 @@ static int winTextSetAppendAttrib(Ihandle* ih, const char* value) if (ih->data->is_multiline) { if (ih->data->has_formatting) - str = iupStrToMac(str); + iupStrToMac(str); else str = iupStrToDos(str); } |