Fix a krazy issue with double-quotes.

This commit is contained in:
Kurt Hindenburg
2011-04-03 22:54:44 -04:00
parent 5ba077d554
commit dd9b08331f

View File

@@ -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 );
}
}