commit
467c53b1ad
|
@ -83,7 +83,12 @@ namespace tgui
|
|||
char* pchData = static_cast<char*>(GlobalLock(hGlobal));
|
||||
if (pchData != NULL)
|
||||
{
|
||||
strcpy(pchData, m_contents.toAnsiString().c_str());
|
||||
#if defined(_MSC_VER)
|
||||
strcpy_s(pchData, sizeof(pchData), m_contents.toAnsiString().c_str());
|
||||
#else
|
||||
strcpy(pchData, m_contents.toAnsiString().c_str());
|
||||
#endif
|
||||
|
||||
SetClipboardData(CF_TEXT, hGlobal);
|
||||
|
||||
GlobalUnlock(hGlobal);
|
||||
|
|
|
@ -28,6 +28,8 @@
|
|||
|
||||
#include <cassert>
|
||||
|
||||
#pragma warning(disable: 4503)
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
namespace tgui
|
||||
|
|
|
@ -421,7 +421,7 @@ namespace tgui
|
|||
|
||||
// Calculate the height of one line
|
||||
if (m_font)
|
||||
m_lineHeight = m_font->getLineSpacing(m_textSize);
|
||||
m_lineHeight = static_cast<unsigned int>(m_font->getLineSpacing(m_textSize));
|
||||
else
|
||||
m_lineHeight = 0;
|
||||
|
||||
|
|
|
@ -40,6 +40,8 @@
|
|||
#include <android/configuration.h>
|
||||
#endif
|
||||
|
||||
#pragma warning(disable: 4503)
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
namespace tgui
|
||||
|
|
Loading…
Reference in New Issue