Index: src/libictranslate/ResourceManager.h =================================================================== diff -u -N -rc72f797f7e7795e3ff15dc2ed832032ee6bafd0a -r1329b4d4f99ceb1f91f7feb915d58434721f4da7 --- src/libictranslate/ResourceManager.h (.../ResourceManager.h) (revision c72f797f7e7795e3ff15dc2ed832032ee6bafd0a) +++ src/libictranslate/ResourceManager.h (.../ResourceManager.h) (revision 1329b4d4f99ceb1f91f7feb915d58434721f4da7) @@ -103,10 +103,10 @@ void SetFontFace(PCTSTR psz); PCTSTR GetFontFace() const { return m_pszFontFace; }; - void SetPointSize(WORD wSize) { m_wPointSize=wSize; }; + void SetPointSize(WORD wSize) { m_wPointSize=wSize; m_bModified = true; }; WORD GetPointSize() const { return m_wPointSize; }; - void SetDirection(bool brtl) { m_bRTL=brtl; }; + void SetDirection(bool brtl) { m_bRTL=brtl; m_bModified = true; }; bool GetDirection() const { return m_bRTL; }; void SetHelpName(PCTSTR psz);