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:
authorAlex Marsev <alex.marsev@gmail.com>2015-07-30 12:42:47 +0300
committerAlex Marsev <alex.marsev@gmail.com>2015-07-30 12:49:21 +0300
commit07026cae53dbfb667995c4d7b133334d917e94d2 (patch)
treea49d74980e898fd847aadf3992fb02f4d69f6dcf
parent034eee1e2273d6bc5ae1ab5257540ad0d1a56cbb (diff)
Fix construction order oversight
-rw-r--r--src/mpc-hc/MainFrm.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mpc-hc/MainFrm.h b/src/mpc-hc/MainFrm.h
index b06f0696a..c5b05edcb 100644
--- a/src/mpc-hc/MainFrm.h
+++ b/src/mpc-hc/MainFrm.h
@@ -161,6 +161,9 @@ interface IMadVRSettings;
class CMainFrame : public CFrameWnd, public CDropClient
{
public:
+
+ DpiHelper m_dpi;
+
enum class Timer32HzSubscriber {
TOOLBARS_HIDER,
CURSOR_HIDER,
@@ -1104,6 +1107,4 @@ public:
bool OpenBD(CString Path);
bool GetDecoderType(CString& type) const;
-
- DpiHelper m_dpi;
};