Move function braces for consistency.

X-Scintilla-Bug-URL: https://sourceforge.net/p/scintilla/bugs/1825/
X-Scintilla-Commit-ID: cdded8beb41e4a494e68b76a6bafeeae14b0d103
This commit is contained in:
Neil Hodgson 2016-04-30 14:03:28 +10:00 committed by Colomban Wendling
parent ba58a391c7
commit 0a0c9bb7ce

View File

@ -1263,8 +1263,7 @@ ListBox *ListBox::Allocate() {
return lb;
}
static int treeViewGetRowHeight(GtkTreeView *view)
{
static int treeViewGetRowHeight(GtkTreeView *view) {
#if GTK_CHECK_VERSION(3,0,0)
// This version sometimes reports erroneous results on GTK2, but the GTK2
// version is inaccurate for GTK 3.14.
@ -1521,8 +1520,7 @@ int ListBoxX::GetVisibleRows() const {
return desiredVisibleRows;
}
int ListBoxX::GetRowHeight()
{
int ListBoxX::GetRowHeight() {
return treeViewGetRowHeight(GTK_TREE_VIEW(list));
}