Index: src/ch/OptionsDlg.h =================================================================== diff -u -rcb4e9d4b60d62b25ae2cf556c0642601af56c787 -r4fe995b304ea342b50293f92d3c1992b43b820f7 --- src/ch/OptionsDlg.h (.../OptionsDlg.h) (revision cb4e9d4b60d62b25ae2cf556c0642601af56c787) +++ src/ch/OptionsDlg.h (.../OptionsDlg.h) (revision 4fe995b304ea342b50293f92d3c1992b43b820f7) @@ -29,9 +29,6 @@ class COptionsDlg : public ictranslate::CLanguageDialog { public: - enum { IDD = IDD_OPTIONS_DIALOG }; - -public: explicit COptionsDlg(CWnd* pParent = NULL); // standard constructor virtual void OnLanguageChanged(); @@ -42,18 +39,6 @@ friend void ShortcutsPropertyCallbackProc(LPVOID lpParam, int iParam, CPtrList* pList, int iIndex); friend void RecentPropertyCallbackProc(LPVOID lpParam, int iParam, CPtrList* pList, int iIndex); -public: - static bool m_bLock; // locker - - std::vector m_cvRecent; - std::vector m_cvShortcuts; - - // for languages - vector m_vld; - TCHAR m_szLangPath[ _MAX_PATH ]; // the full path to a folder with langs (@read) - - CPropertyListCtrl m_ctlProperties; - protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support @@ -76,12 +61,15 @@ DECLARE_MESSAGE_MAP() private: - TCHAR m_szBuffer[ _MAX_PATH ]; // for macro use - CString m_strTemp; - int m_iSel = 0; -}; + static bool m_bLock; // locker -//{{AFX_INSERT_LOCATION}} -// Microsoft Visual C++ will insert additional declarations immediately before the previous line. + std::vector m_cvRecent; + std::vector m_cvShortcuts; + // for languages + vector m_vld; + + CPropertyListCtrl m_ctlProperties; +}; + #endif