fix compilation under visual studio

Originally committed to SVN as r4695.
This commit is contained in:
Karl Blomster 2010-07-19 01:28:52 +00:00
parent cd810ae1c0
commit 9def56b61c
2 changed files with 4 additions and 4 deletions

View file

@ -472,9 +472,9 @@ public:
class Advanced_Interface: public OptionPage {
public:
Advanced_Interface(wxTreebook *book): OptionPage(book, _("Backup"), PAGE_SUB) {
wxFlexGridSizer *interface = PageSizer(_("Interface"));
wxFlexGridSizer *interface_ = PageSizer(_("Interface"));
interface->Add(new wxStaticText(this, wxID_ANY, _T("TBD..")), 0, wxALL, 5);
interface_->Add(new wxStaticText(this, wxID_ANY, _T("TBD..")), 0, wxALL, 5);
SetSizerAndFit(sizer);
}
@ -554,7 +554,7 @@ Preferences::Preferences(wxWindow *parent): wxDialog(parent, -1, _("Preferences"
subtitles = new Subtitles(book);
audio = new Audio(book);
video = new Video(book);
interface = new Interface(book);
interface_ = new Interface(book);
interface_colours = new Interface_Colours(book);
interface_hotkeys = new Interface_Hotkeys(book);
paths = new Paths(book);

View file

@ -55,7 +55,7 @@ class Preferences: public wxDialog {
Subtitles *subtitles;
Audio *audio;
Video *video;
Interface *interface;
Interface *interface_;
Interface_Colours *interface_colours;
Interface_Hotkeys *interface_hotkeys;
Paths *paths;