WTL 7.1 Released

A private forum for us Super-Humans, I even trust you to be able to edit your own posts =)

Moderator: Moderators

Locked
GargoyleMT
DC++ Contributor
Posts: 3212
Joined: 2003-01-07 21:46
Location: .pa.us

WTL 7.1 Released

Post by GargoyleMT » 2003-12-11 11:43

Just passing this along:
<AtomicJo> Hi Gargoyle, just to inform you a new WTL library was released (7.1).
From the WTL yahoo mailing List:
"Windows Template Library WTL 7.1 has been released. You can find it at Microsoft Downloads at http://www.microsoft.com/downloads/deta ... laylang=en "

arnetheduck
The Creator Himself
Posts: 296
Joined: 2003-01-02 17:15

Post by arnetheduck » 2003-12-13 12:01

ah, good. Changelog states it should fix a few problems that have been annoying me...I'll try it out asap...

GargoyleMT
DC++ Contributor
Posts: 3212
Joined: 2003-01-07 21:46
Location: .pa.us

Post by GargoyleMT » 2003-12-17 12:39

So there are problems with 7.1 now? I caught a hint of this in main chat, but...

GargoyleMT
DC++ Contributor
Posts: 3212
Joined: 2003-01-07 21:46
Location: .pa.us

Post by GargoyleMT » 2003-12-22 21:52

Opera, here's your two line fix, courtesy of the WTL mailing list, me, and some diff/merge tools:

Code: Select all

--- atlctrlw.h.orig	Sat Dec  6 04:12:56 2003
+++ atlctrlw.h	Mon Dec 22 21:32:12 2003
@@ -3585,7 +3585,7 @@
 			m_hIconChildMaximized = NULL;
 		}
 
-		if(bMaxOld != m_bChildMaximized || hIconOld != m_hIconChildMaximized)
+		if(bMaxOld != m_bChildMaximized)
 		{
 #ifdef _CMDBAR_EXTRA_TRACE
 			ATLTRACE2(atlTraceUI, 0, "MDI CmdBar - All messages hook change: m_bChildMaximized = %s\n", m_bChildMaximized ? "true" : "false");
@@ -3633,7 +3633,9 @@
 				}
 #endif //(_WIN32_IE < 0x0400)
 			}
-
+                }
+                if(bMaxOld != m_bChildMaximized || hIconOld != m_hIconChildMaximized)
+                {
 			// force size change and redraw everything
 			RECT rect = { 0 };
 			GetWindowRect(&rect);


arnetheduck
The Creator Himself
Posts: 296
Joined: 2003-01-02 17:15

Post by arnetheduck » 2003-12-23 03:56

bah. boring. he was supposed to find it himself.

ivulfusbar
Posts: 506
Joined: 2003-01-03 07:33

Post by ivulfusbar » 2003-12-23 08:11

Well, opera doesn't have access to this thread anyway so.

*grins*
Everyone is supposed to download from the hubs, - I don´t know why, but I never do anymore.

GargoyleMT
DC++ Contributor
Posts: 3212
Joined: 2003-01-07 21:46
Location: .pa.us

Post by GargoyleMT » 2003-12-23 08:15

Foiled again, thanks to you and your meddling fusbar!!!

I'll get you meddling kids!

Locked