mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-21 16:11:11 +01:00
Use const
This commit is contained in:
@@ -534,7 +534,7 @@ Audacity to trim spaces for you?"
|
|||||||
RuleTable->AutoSizeColumns ();
|
RuleTable->AutoSizeColumns ();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ExtImportPrefs::AddItemToTable (int index, ExtImportItem *item)
|
void ExtImportPrefs::AddItemToTable (int index, const ExtImportItem *item)
|
||||||
{
|
{
|
||||||
wxString extensions, mime_types;
|
wxString extensions, mime_types;
|
||||||
if (item->extensions.Count() > 0)
|
if (item->extensions.Count() > 0)
|
||||||
|
|||||||
@@ -100,7 +100,7 @@ class ExtImportPrefs final : public PrefsPanel
|
|||||||
void DoOnRuleTableKeyDown (int keycode);
|
void DoOnRuleTableKeyDown (int keycode);
|
||||||
bool DoOnPluginKeyDown (int code);
|
bool DoOnPluginKeyDown (int code);
|
||||||
void DoOnRuleTableSelect (int toprow);
|
void DoOnRuleTableSelect (int toprow);
|
||||||
void AddItemToTable (int index, ExtImportItem *item);
|
void AddItemToTable (int index, const ExtImportItem *item);
|
||||||
void Populate();
|
void Populate();
|
||||||
void PopulateOrExchange(ShuttleGui & S);
|
void PopulateOrExchange(ShuttleGui & S);
|
||||||
DECLARE_EVENT_TABLE()
|
DECLARE_EVENT_TABLE()
|
||||||
|
|||||||
Reference in New Issue
Block a user