do not export compare functions in the wx ABI
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58909 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -84,12 +84,14 @@ typedef struct {
|
|||||||
wxUint8 c;
|
wxUint8 c;
|
||||||
} CharsetItem;
|
} CharsetItem;
|
||||||
|
|
||||||
extern "C" int wxCMPFUNC_CONV
|
extern "C"
|
||||||
|
{
|
||||||
|
static int wxCMPFUNC_CONV
|
||||||
CompareCharsetItems(const void *i1, const void *i2)
|
CompareCharsetItems(const void *i1, const void *i2)
|
||||||
{
|
{
|
||||||
return ( ((CharsetItem*)i1) -> u - ((CharsetItem*)i2) -> u );
|
return ( ((CharsetItem*)i1) -> u - ((CharsetItem*)i2) -> u );
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static CharsetItem* BuildReverseTable(const wxUint16 *tbl)
|
static CharsetItem* BuildReverseTable(const wxUint16 *tbl)
|
||||||
{
|
{
|
||||||
|
@@ -477,7 +477,7 @@ int wxListBox::GetSelection() const
|
|||||||
return m_selections.IsEmpty() ? wxNOT_FOUND : m_selections[0];
|
return m_selections.IsEmpty() ? wxNOT_FOUND : m_selections[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxCMPFUNC_CONV wxCompareInts(int *n, int *m)
|
static int wxCMPFUNC_CONV wxCompareInts(int *n, int *m)
|
||||||
{
|
{
|
||||||
return *n - *m;
|
return *n - *m;
|
||||||
}
|
}
|
||||||
|
@@ -49,7 +49,9 @@
|
|||||||
extern GtkWidget *wxGetRootWindow();
|
extern GtkWidget *wxGetRootWindow();
|
||||||
#endif // __WXGTK20__
|
#endif // __WXGTK20__
|
||||||
|
|
||||||
extern "C" int wxCMPFUNC_CONV
|
extern "C"
|
||||||
|
{
|
||||||
|
static int wxCMPFUNC_CONV
|
||||||
wxCompareFamilies (const void *a, const void *b)
|
wxCompareFamilies (const void *a, const void *b)
|
||||||
{
|
{
|
||||||
const char *a_name = pango_font_family_get_name (*(PangoFontFamily **)a);
|
const char *a_name = pango_font_family_get_name (*(PangoFontFamily **)a);
|
||||||
@@ -57,6 +59,7 @@ wxCompareFamilies (const void *a, const void *b)
|
|||||||
|
|
||||||
return g_utf8_collate (a_name, b_name);
|
return g_utf8_collate (a_name, b_name);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool wxFontEnumerator::EnumerateFacenames(wxFontEncoding encoding,
|
bool wxFontEnumerator::EnumerateFacenames(wxFontEncoding encoding,
|
||||||
bool fixedWidthOnly)
|
bool fixedWidthOnly)
|
||||||
|
Reference in New Issue
Block a user