diff options
Diffstat (limited to 'plugins/Import/progress.c')
-rw-r--r-- | plugins/Import/progress.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/Import/progress.c b/plugins/Import/progress.c index 60255f6b61..99412f647a 100644 --- a/plugins/Import/progress.c +++ b/plugins/Import/progress.c @@ -93,12 +93,8 @@ void AddMessage( const char* fmt, ... ) }
#endif
- #if defined( _UNICODE )
{ TCHAR* str = mir_a2t( msgBuf );
SendMessage( hdlgProgress, PROGM_ADDMESSAGE, 0, ( LPARAM )str );
mir_free( str );
}
- #else
- SendMessage( hdlgProgress, PROGM_ADDMESSAGE, 0, ( LPARAM )msgBuf );
- #endif
}
|