From db83d416932d0d20a44aa3b26e20c53bd9977eee Mon Sep 17 00:00:00 2001
From: Pavel Kalugin
Date: Tue, 4 Sep 2018 12:41:40 +0300
Subject: [PATCH] Replace C++11 expressions with C++03 ones
---
src/generic/grid.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/generic/grid.cpp b/src/generic/grid.cpp
index e45f047774..ca39c5b08f 100644
--- a/src/generic/grid.cpp
+++ b/src/generic/grid.cpp
@@ -1169,7 +1169,7 @@ wxString wxGridTableBase::GetColLabelValue( int col )
wxString wxGridTableBase::GetCornerLabelValue() const
{
- return wxString{};
+ return wxString();
}
wxString wxGridTableBase::GetTypeName( int WXUNUSED(row), int WXUNUSED(col) )
@@ -7104,7 +7104,7 @@ wxString wxGrid::GetCornerLabelValue() const
}
else
{
- return wxString{};
+ return wxString();
}
}