153_rainbow.diff

The diff file to apply for rainbow directory - Sender Ghost, 11/10/2011 01:49 AM

Download (826 Bytes)

View differences:

rainbow/Framebuffer/Clip.cpp 2011-11-10 06:35:29 +0600
141 141
{
142 142
	String w = ReadClipboard("wtext");
143 143
	if(w.GetCount())
144
		return WString(~w, w.GetLength() / 2);
144
		return WString((const wchar *)~w, w.GetLength() / 2);
145 145
	return ReadClipboard("text").ToWString();
146 146
}
147 147

  
rainbow/WinGl/Clip.cpp 2011-11-10 06:39:37 +0600
141 141
{
142 142
	String w = ReadClipboard("wtext");
143 143
	if(w.GetCount())
144
		return WString(~w, w.GetLength() / 2);
144
		return WString((const wchar *)~w, w.GetLength() / 2);
145 145
	return ReadClipboard("text").ToWString();
146 146
}
147 147