Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 68070 | Differences between
and this patch

Collapse All | Expand All

(-)audiere-1.9.4/examples/wxPlayer/DeviceFrame.cpp (-1 / +1 lines)
Lines 57-63 Link Here
57
57
58
58
59
DeviceFrame::DeviceFrame(audiere::AudioDevicePtr device)
59
DeviceFrame::DeviceFrame(audiere::AudioDevicePtr device)
60
: wxMDIParentFrame(0, -1, wxT("Audio Device - " + wxString(device->getName())),
60
: wxMDIParentFrame(0, -1, wxT("Audio Device - " + CStr2wxString( device->getName() )),
61
                   wxDefaultPosition, wxSize(400, 500))
61
                   wxDefaultPosition, wxSize(400, 500))
62
{
62
{
63
  m_device = device;
63
  m_device = device;
(-)audiere-1.9.4/examples/wxPlayer/MIDIDeviceDialog.h (-1 / +1 lines)
Lines 15-21 Link Here
15
  }
15
  }
16
16
17
private:
17
private:
18
  void MIDIDeviceDialog::OnButton(wxCommandEvent& event);
18
  void OnButton(wxCommandEvent& event);
19
19
20
  wxTextCtrl* m_name;
20
  wxTextCtrl* m_name;
21
21
(-)audiere-1.9.4/examples/wxPlayer/TagsDialog.h (+26 lines)
Line 0 Link Here
1
#ifndef TAGS_DIALOG_H
2
#define TAGS_DIALOG_H
3
4
5
#include <audiere.h>
6
#include "wx.h"
7
8
9
class TagsDialog : public wxDialog {
10
public:
11
  TagsDialog(
12
    wxWindow* parent,
13
    audiere::SampleSourcePtr source);
14
15
private:
16
  void OnButton(wxCommandEvent& event);
17
  void OnClose(wxCloseEvent& event);
18
19
  wxListBox* m_tags;
20
  wxButton* m_close;
21
22
  DECLARE_EVENT_TABLE()
23
};
24
25
26
#endif

Return to bug 68070