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:
authorjonasno <jonasno@users.sourceforge.net>2010-02-19 01:01:33 +0300
committerjonasno <jonasno@users.sourceforge.net>2010-02-19 01:01:33 +0300
commitca7ad0034eb7760572223a7e120d1be2e35e34d8 (patch)
treee7d3d3dc8f8a17c9622a5c2e5afc67978699b4d2 /src/apps/mplayerc/LcdSupport.cpp
parentc37e22cac1d15d150c66b61fba3b79eb3f899b7e (diff)
Changed C casts to C++ casts and some code formatting corrections
Patch by XhmikosR git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@1676 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/apps/mplayerc/LcdSupport.cpp')
-rw-r--r--src/apps/mplayerc/LcdSupport.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/apps/mplayerc/LcdSupport.cpp b/src/apps/mplayerc/LcdSupport.cpp
index 9be9e57e6..411154bfd 100644
--- a/src/apps/mplayerc/LcdSupport.cpp
+++ b/src/apps/mplayerc/LcdSupport.cpp
@@ -39,7 +39,7 @@
void LCD_UpdateThread(void * Control)
{
- CMPC_Lcd * ctrl = (CMPC_Lcd *) Control;
+ CMPC_Lcd * ctrl = static_cast<CMPC_Lcd *> (Control);
wchar_t str[40];
__time64_t ltime;
__time64_t otime = 0;