commit 7a614cea0de41694ff2053b58227e9ae9561395c parent 8ef6df19c8b626a5b31284246aba37a960399699 Author: cfillion <cfillion@users.noreply.github.com> Date: Sat, 20 Aug 2016 23:49:52 -0400 micro refactoring Diffstat:
M | src/tabbar.cpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/tabbar.cpp b/src/tabbar.cpp @@ -30,7 +30,7 @@ TabBar::TabBar(HWND handle, const Tabs &tabs) int TabBar::addTab(const Tab &tab) { - int index = count(); + const int index = count(); m_pages.push_back(tab.page);