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