Fix recurrent typo in "usable"
This word has a single "e".
This commit is contained in:
@@ -420,16 +420,16 @@ wxPG_PROP_USES_COMMON_VALUE = 0x00020000,
|
|||||||
// See wxPGProperty::SetAutoUnspecified().
|
// See wxPGProperty::SetAutoUnspecified().
|
||||||
wxPG_PROP_AUTO_UNSPECIFIED = 0x00040000,
|
wxPG_PROP_AUTO_UNSPECIFIED = 0x00040000,
|
||||||
|
|
||||||
// Indicates the bit useable by derived properties.
|
// Indicates the bit usable by derived properties.
|
||||||
wxPG_PROP_CLASS_SPECIFIC_1 = 0x00080000,
|
wxPG_PROP_CLASS_SPECIFIC_1 = 0x00080000,
|
||||||
|
|
||||||
// Indicates the bit useable by derived properties.
|
// Indicates the bit usable by derived properties.
|
||||||
wxPG_PROP_CLASS_SPECIFIC_2 = 0x00100000,
|
wxPG_PROP_CLASS_SPECIFIC_2 = 0x00100000,
|
||||||
|
|
||||||
// Indicates that the property is being deleted and should be ignored.
|
// Indicates that the property is being deleted and should be ignored.
|
||||||
wxPG_PROP_BEING_DELETED = 0x00200000,
|
wxPG_PROP_BEING_DELETED = 0x00200000,
|
||||||
|
|
||||||
// Indicates the bit useable by derived properties.
|
// Indicates the bit usable by derived properties.
|
||||||
wxPG_PROP_CLASS_SPECIFIC_3 = 0x00400000
|
wxPG_PROP_CLASS_SPECIFIC_3 = 0x00400000
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@@ -594,7 +594,7 @@ protected:
|
|||||||
|
|
||||||
// -----------------------------------------------------------------------
|
// -----------------------------------------------------------------------
|
||||||
|
|
||||||
// Indicates first bit useable by derived properties.
|
// Indicates first bit usable by derived properties.
|
||||||
#define wxPG_PROP_SHOW_FULL_FILENAME wxPG_PROP_CLASS_SPECIFIC_1
|
#define wxPG_PROP_SHOW_FULL_FILENAME wxPG_PROP_CLASS_SPECIFIC_1
|
||||||
|
|
||||||
// Like wxLongStringProperty, but the button triggers file selector instead.
|
// Like wxLongStringProperty, but the button triggers file selector instead.
|
||||||
|
@@ -360,12 +360,12 @@ wxPG_PROP_USES_COMMON_VALUE = 0x00020000,
|
|||||||
*/
|
*/
|
||||||
wxPG_PROP_AUTO_UNSPECIFIED = 0x00040000,
|
wxPG_PROP_AUTO_UNSPECIFIED = 0x00040000,
|
||||||
|
|
||||||
/** Indicates the bit useable by derived properties.
|
/** Indicates the bit usable by derived properties.
|
||||||
@hideinitializer
|
@hideinitializer
|
||||||
*/
|
*/
|
||||||
wxPG_PROP_CLASS_SPECIFIC_1 = 0x00080000,
|
wxPG_PROP_CLASS_SPECIFIC_1 = 0x00080000,
|
||||||
|
|
||||||
/** Indicates the bit useable by derived properties.
|
/** Indicates the bit usable by derived properties.
|
||||||
@hideinitializer
|
@hideinitializer
|
||||||
*/
|
*/
|
||||||
wxPG_PROP_CLASS_SPECIFIC_2 = 0x00100000,
|
wxPG_PROP_CLASS_SPECIFIC_2 = 0x00100000,
|
||||||
@@ -375,7 +375,7 @@ wxPG_PROP_CLASS_SPECIFIC_2 = 0x00100000,
|
|||||||
*/
|
*/
|
||||||
wxPG_PROP_BEING_DELETED = 0x00200000
|
wxPG_PROP_BEING_DELETED = 0x00200000
|
||||||
|
|
||||||
/** Indicates the bit useable by derived properties.
|
/** Indicates the bit usable by derived properties.
|
||||||
@hideinitializer
|
@hideinitializer
|
||||||
*/
|
*/
|
||||||
wxPG_PROP_CLASS_SPECIFIC_3 = 0x00400000
|
wxPG_PROP_CLASS_SPECIFIC_3 = 0x00400000
|
||||||
|
@@ -595,7 +595,7 @@ protected:
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
// Indicates first bit useable by derived properties.
|
// Indicates first bit usable by derived properties.
|
||||||
#define wxPG_PROP_SHOW_FULL_FILENAME wxPG_PROP_CLASS_SPECIFIC_1
|
#define wxPG_PROP_SHOW_FULL_FILENAME wxPG_PROP_CLASS_SPECIFIC_1
|
||||||
|
|
||||||
/** @class wxFileProperty
|
/** @class wxFileProperty
|
||||||
|
@@ -230,7 +230,7 @@ bool wxComboBox::Create( wxWindow *parent, wxWindowID id, const wxString& value,
|
|||||||
combo->entry_change_id = gtk_signal_connect (GTK_OBJECT (combo->entry), "changed",
|
combo->entry_change_id = gtk_signal_connect (GTK_OBJECT (combo->entry), "changed",
|
||||||
(GtkSignalFunc) gtk_dummy_callback, combo);
|
(GtkSignalFunc) gtk_dummy_callback, combo);
|
||||||
|
|
||||||
// make it more useable
|
// make it more usable
|
||||||
gtk_combo_set_use_arrows_always( GTK_COMBO(m_widget), TRUE );
|
gtk_combo_set_use_arrows_always( GTK_COMBO(m_widget), TRUE );
|
||||||
|
|
||||||
// and case-sensitive
|
// and case-sensitive
|
||||||
|
Reference in New Issue
Block a user