]> git.saurik.com Git - wxWidgets.git/commitdiff
Update AUI frame capture when it changes.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 18 Jul 2010 11:55:54 +0000 (11:55 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 18 Jul 2010 11:55:54 +0000 (11:55 +0000)
Set the updated label in wxAuiManager::Update() to ensure the labels stored
two places are always in sync.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65007 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/aui/framemanager.cpp

index a1f7fb11dfe9a5a90ca8dbeef3806cb12d07511b..3680831e6ccb5720865419507fda72f02b020a92 100644 (file)
@@ -2546,6 +2546,9 @@ void wxAuiManager::Update()
                     style |= wxRESIZE_BORDER;
                 p.frame->SetWindowStyleFlag(style);
 
+                if (p.frame->GetLabel() != p.caption)
+                    p.frame->SetLabel(p.caption);
+
                 if (p.frame->IsShown() != p.IsShown())
                     p.frame->Show(p.IsShown());
             }