Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/apps/mplayerc/SaveTextFileDialog.h')
-rw-r--r--src/apps/mplayerc/SaveTextFileDialog.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/apps/mplayerc/SaveTextFileDialog.h b/src/apps/mplayerc/SaveTextFileDialog.h
index ec39f3f65..bba18e85d 100644
--- a/src/apps/mplayerc/SaveTextFileDialog.h
+++ b/src/apps/mplayerc/SaveTextFileDialog.h
@@ -30,31 +30,31 @@
class CSaveTextFileDialog : public CFileDialog
{
- DECLARE_DYNAMIC(CSaveTextFileDialog)
+ DECLARE_DYNAMIC(CSaveTextFileDialog)
private:
- CTextFile::enc m_e;
+ CTextFile::enc m_e;
public:
- CSaveTextFileDialog(
- CTextFile::enc e,
- LPCTSTR lpszDefExt = NULL, LPCTSTR lpszFileName = NULL,
- LPCTSTR lpszFilter = NULL, CWnd* pParentWnd = NULL);
- virtual ~CSaveTextFileDialog();
+ CSaveTextFileDialog(
+ CTextFile::enc e,
+ LPCTSTR lpszDefExt = NULL, LPCTSTR lpszFileName = NULL,
+ LPCTSTR lpszFilter = NULL, CWnd* pParentWnd = NULL);
+ virtual ~CSaveTextFileDialog();
- CComboBox m_encoding;
+ CComboBox m_encoding;
- CTextFile::enc GetEncoding()
- {
- return(m_e);
- }
+ CTextFile::enc GetEncoding()
+ {
+ return(m_e);
+ }
protected:
- DECLARE_MESSAGE_MAP()
- virtual void DoDataExchange(CDataExchange* pDX);
- virtual BOOL OnInitDialog();
- virtual BOOL OnFileNameOK();
+ DECLARE_MESSAGE_MAP()
+ virtual void DoDataExchange(CDataExchange* pDX);
+ virtual BOOL OnInitDialog();
+ virtual BOOL OnFileNameOK();
public:
- afx_msg void OnEncodingChange();
+ afx_msg void OnEncodingChange();
};