From 2dfc35a9d65a324ed4fb00c61d9ad46fe747a9f5 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Thu, 22 Feb 2018 17:26:35 +0100 Subject: [PATCH] Fix a typo in KI_DIALOG::Title() --- common/confirm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/confirm.cpp b/common/confirm.cpp index f3f68a5ef8..1fb6a22aec 100644 --- a/common/confirm.cpp +++ b/common/confirm.cpp @@ -102,7 +102,7 @@ KI_DIALOG& KI_DIALOG::Type( TYPE aType ) KI_DIALOG& KI_DIALOG::Title( const wxString& aTitle ) { - m_customTitle = m_title; + m_customTitle = aTitle; SetTitle( aTitle ); return *this; }