mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-04 16:45:54 +00:00
DiscIO: Remove C/I/S prefixes from class names
These prefixes were inconsistent with the rest of Dolphin.
I'm also renaming VolumeWiiCrypted to VolumeWii because of 1113b13
.
This commit is contained in:
parent
1113b131f2
commit
b2af07a7b7
64 changed files with 394 additions and 398 deletions
|
@ -16,7 +16,7 @@ class wxTextCtrl;
|
|||
|
||||
namespace DiscIO
|
||||
{
|
||||
class IVolume;
|
||||
class Volume;
|
||||
enum class Language;
|
||||
}
|
||||
|
||||
|
@ -24,7 +24,7 @@ class InfoPanel final : public wxPanel
|
|||
{
|
||||
public:
|
||||
InfoPanel(wxWindow* parent, wxWindowID id, const GameListItem& item,
|
||||
const std::unique_ptr<DiscIO::IVolume>& opened_iso);
|
||||
const std::unique_ptr<DiscIO::Volume>& opened_iso);
|
||||
|
||||
private:
|
||||
enum
|
||||
|
@ -53,7 +53,7 @@ private:
|
|||
void EmitTitleChangeEvent(const wxString& new_title);
|
||||
|
||||
const GameListItem& m_game_list_item;
|
||||
const std::unique_ptr<DiscIO::IVolume>& m_opened_iso;
|
||||
const std::unique_ptr<DiscIO::Volume>& m_opened_iso;
|
||||
|
||||
wxTextCtrl* m_internal_name;
|
||||
wxTextCtrl* m_game_id;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue