mirror of
https://github.com/fadden/ciderpress.git
synced 2025-02-16 21:31:43 +00:00
Initialize fUseRTF to "true"
The field wasn't being initialized, so if you did things in a certain way (open a .SDK as a ShrinkIt archive, double-click on the disk image, then view an AppleWorks AWP document), the flag might be initialized to "false" and you'd lose the formatting.
This commit is contained in:
parent
6153b0f9a1
commit
c7869c38a5
@ -189,7 +189,8 @@ public:
|
||||
};
|
||||
|
||||
ReformatText()
|
||||
: fLeftMargin(0),
|
||||
: fUseRTF(true),
|
||||
fLeftMargin(0),
|
||||
fRightMargin(0),
|
||||
fPointSize(8),
|
||||
fPreMultPointSize(8),
|
||||
|
@ -757,7 +757,7 @@ bool MatchSemicolonList(const CString set, const CString match)
|
||||
cp++;
|
||||
}
|
||||
|
||||
LOGI("--- No match for '%ls' in '%ls'", (LPCWSTR) match, (LPCWSTR) set);
|
||||
LOGD("--- No match for '%ls' in '%ls'", (LPCWSTR) match, (LPCWSTR) set);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user