git-svn-id: svn://svn.code.sf.net/p/ditto-cp/code/trunk@109 595ec19a-5cb4-439b-94a8-42fb3063c22c
@@ -1,3 +1,13 @@
+04 Aug 31
+---------
+! Fixed "Corrupted QuickPaste position when closing Ditto while minimized /
+ rolled-up" bug.
+ . Reported By: Anthony Ford - tonyforduk 2004-08-27 14:08
+ http://sourceforge.net/forum/message.php?msg_id=2732759
+ * CWndEx::GetWindowRectEx() was not properly copying m_crFullSizeWindow
+ when m_bMinimized was true.
+
04 May 30
---------
+ Toggle Connect to Clipboard to Connect or Disconnect the
@@ -344,7 +344,7 @@ BOOL CQPasteWnd::HideQPasteWindow()
//Save the size
CRect rect;
- GetWindowRectEx(rect);
+ GetWindowRectEx(&rect);
CGetSetOptions::SetQuickPasteSize(rect.Size());
CGetSetOptions::SetQuickPastePoint(rect.TopLeft());
@@ -48,7 +48,7 @@ void CWndEx::GetWindowRectEx(LPRECT lpRect)
{
if(m_bMinimized)
- lpRect = m_crFullSizeWindow;
+ *lpRect = m_crFullSizeWindow;
return;
}