From dd9b08331fe1b05f26edaaa7c9ef0b4fae7e878c Mon Sep 17 00:00:00 2001 From: Kurt Hindenburg Date: Sun, 3 Apr 2011 22:54:44 -0400 Subject: [PATCH] Fix a krazy issue with double-quotes. --- src/ViewContainer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ViewContainer.cpp b/src/ViewContainer.cpp index 9888139b3..7df7add4d 100644 --- a/src/ViewContainer.cpp +++ b/src/ViewContainer.cpp @@ -791,7 +791,7 @@ void TabbedViewContainer::updateTitle(ViewProperties* item) _tabBar->setTabToolTip( index , tabText ); // To avoid having & replaced with _ (shortcut indicator) - tabText.replace("&", "&&"); + tabText.replace('&', "&&"); _tabBar->setTabText( index , tabText ); } }