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:
authorXhmikosR <xhmikosr@users.sourceforge.net>2012-04-10 12:52:57 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2012-04-10 12:52:57 +0400
commit140d87da8aee6e5636237137f7136cc331b1d81c (patch)
tree7048c40189796098dffd47b50989f933b9e2a1cd
parent248910ee981317e43df6ce1c1323b3f32df4057c (diff)
Remove the version number from the program's title completely, even when not playing anything. There is the About window for this job.
patch from demi_alucard git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4323 10f7b99b-c216-0410-bff0-8a66a9350fd8
-rw-r--r--src/apps/mplayerc/MainFrm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/apps/mplayerc/MainFrm.cpp b/src/apps/mplayerc/MainFrm.cpp
index 6e1ed4160..30753a7c9 100644
--- a/src/apps/mplayerc/MainFrm.cpp
+++ b/src/apps/mplayerc/MainFrm.cpp
@@ -819,9 +819,9 @@ int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
m_bToggleShaderScreenSpace = s.fToggleShaderScreenSpace;
#ifdef _WIN64
- m_strTitle.Format (L"%s x64 - v%s", ResStr(IDR_MAINFRAME), AfxGetMyApp()->m_strVersion);
+ m_strTitle.Format (L"%s x64", ResStr(IDR_MAINFRAME));
#else
- m_strTitle.Format (L"%s - v%s", ResStr(IDR_MAINFRAME), AfxGetMyApp()->m_strVersion);
+ m_strTitle.Format (L"%s", ResStr(IDR_MAINFRAME));
#endif
SetWindowText(m_strTitle);