This commit is contained in:
Igor Pavlov
2010-10-04 00:00:00 +00:00
committed by Kornel Lesiński
parent 044e4bb741
commit 2eb60a0598
105 changed files with 868 additions and 466 deletions
+1 -1
View File
@@ -34,4 +34,4 @@ HRESULT StringToGUIDA(const char *string, GUID &classID)
return StringToGUIDW(MultiByteToUnicodeString(string), classID);
}
}}
}}
+2 -2
View File
@@ -53,7 +53,7 @@ AString GUIDToStringA(REFGUID guid);
#define GUIDToString GUIDToStringW
#else
#define GUIDToString GUIDToStringA
#endif // !UNICODE
#endif
HRESULT StringToGUIDW(const wchar_t *string, GUID &classID);
HRESULT StringToGUIDA(const char *string, GUID &classID);
@@ -61,7 +61,7 @@ HRESULT StringToGUIDA(const char *string, GUID &classID);
#define StringToGUID StringToGUIDW
#else
#define StringToGUID StringToGUIDA
#endif // !UNICODE
#endif
}}
+1 -1
View File
@@ -7,4 +7,4 @@
namespace NWindows{
namespace NConsole{
}}
}}
+1 -1
View File
@@ -49,4 +49,4 @@ public:
}}
#endif
#endif
+1 -1
View File
@@ -45,4 +45,4 @@ public:
#endif
#endif
#endif
+2 -4
View File
@@ -4,7 +4,6 @@
#define __WINDOWS_CONTROL_EDIT_H
#include "Windows/Window.h"
#include "Windows/Defs.h"
namespace NWindows {
namespace NControl {
@@ -12,10 +11,9 @@ namespace NControl {
class CEdit: public CWindow
{
public:
void SetPasswordChar(WPARAM c)
{ SendMessage(EM_SETPASSWORDCHAR, c); }
void SetPasswordChar(WPARAM c) { SendMessage(EM_SETPASSWORDCHAR, c); }
};
}}
#endif
#endif
-1
View File
@@ -83,4 +83,3 @@ public:
}}
#endif
+1 -1
View File
@@ -32,4 +32,4 @@ public:
}}
#endif
#endif
+1 -1
View File
@@ -40,4 +40,4 @@ public:
}}
#endif
#endif
+1 -1
View File
@@ -25,4 +25,4 @@ public:
}}
#endif
#endif
+1 -1
View File
@@ -55,4 +55,4 @@ public:
}}
#endif
#endif
+1 -3
View File
@@ -9,6 +9,4 @@ namespace NFile {
namespace NMapping {
}}}
}}}
+1 -1
View File
@@ -8,7 +8,7 @@
#ifndef _UNICODE
extern bool g_IsNT;
#endif _UNICODE
#endif
namespace NWindows {
+1 -1
View File
@@ -19,4 +19,4 @@ void ProcessMessages(HWND window)
}
}
}
}
+1 -1
View File
@@ -168,7 +168,7 @@ HRESULT CPropVariant::Copy(const PROPVARIANT* pSrc)
memmove((PROPVARIANT*)this, pSrc, sizeof(PROPVARIANT));
return S_OK;
}
return ::VariantCopy((tagVARIANT *)this, (tagVARIANT *)(pSrc));
return ::VariantCopy((tagVARIANT *)this, (tagVARIANT *)const_cast<PROPVARIANT *>(pSrc));
}