diff options
Diffstat (limited to 'plugins/SecureIM/src/rtfconv.cpp')
-rw-r--r-- | plugins/SecureIM/src/rtfconv.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SecureIM/src/rtfconv.cpp b/plugins/SecureIM/src/rtfconv.cpp index 994f541373..c046a61fbb 100644 --- a/plugins/SecureIM/src/rtfconv.cpp +++ b/plugins/SecureIM/src/rtfconv.cpp @@ -7,9 +7,9 @@ RTFCONVSTRING pRtfconvString = NULL; BOOL load_rtfconv () {
- hRtfconv = LoadLibrary( "rtfconv.dll" ) ;
+ hRtfconv = LoadLibrary(_T("rtfconv.dll")) ;
if ( hRtfconv == NULL ) {
- hRtfconv = LoadLibrary( "plugins\\rtfconv.dll" ) ;
+ hRtfconv = LoadLibrary(_T("plugins\\rtfconv.dll")) ;
if ( hRtfconv == NULL )
return FALSE;
}
|