remove unnecessary ?: operator

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51426 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett
2008-01-28 21:03:39 +00:00
parent a619d8c959
commit 194323c7c0

View File

@@ -552,7 +552,7 @@ wxGUIAppTraits::GetStandardCmdLineOptions(wxArrayString& names,
names.push_back(wxGetNameFromGtkOptionEntry(&entries[n]));
const gchar * const entryDesc = entries[n].description;
desc.push_back(entryDesc ? wxString(entryDesc) : _T(""));
desc.push_back(wxString(entryDesc));
}
g_option_group_free (gtkOpts);