patches/gpac-04_wxT.diff
author jurikm
Sun, 12 Feb 2012 14:04:10 +0000
changeset 8245 383896da4129
parent 2401 5514f62da58e
permissions -rw-r--r--
SFEsauerbraten.spec: add IPS package name
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2401
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
     1
--- gpac/applications/osmo4_wx/fileprops.cpp.orig	2006-10-13 19:22:29.000000000 +0200
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
     2
+++ gpac/applications/osmo4_wx/fileprops.cpp	2010-03-12 15:34:53.814123000 +0100
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
     3
@@ -35,7 +35,7 @@
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
     4
 
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
     5
 
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
     6
 wxFileProps::wxFileProps(wxWindow *parent)
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
     7
-             : wxDialog(parent, -1, wxString(_T("File Properties")))
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
     8
+             : wxDialog(parent, -1, wxString(wxT("File Properties")))
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
     9
 {
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
    10
 
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
    11
 	m_pApp = (wxOsmo4Frame *)parent;
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
    12
@@ -44,8 +44,8 @@
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
    13
 
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
    14
 	m_pTreeView = new wxTreeCtrl(this, ID_TREE_VIEW, wxPoint(4, 2), wxSize(200, 180), wxTR_DEFAULT_STYLE | wxSUNKEN_BORDER);
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
    15
 	
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
    16
-	new wxStaticText(this, 0, _T("Information"), wxPoint(210, 2), wxSize(60, 20));
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
    17
-    m_pViewSel = new wxComboBox(this, ID_VIEW_SEL, _T(""), wxPoint(280, 2), wxSize(120, 24), 0, NULL, wxCB_READONLY);
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
    18
+	new wxStaticText(this, 0, wxT("Information"), wxPoint(210, 2), wxSize(60, 20));
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
    19
+    m_pViewSel = new wxComboBox(this, ID_VIEW_SEL, wxT(""), wxPoint(280, 2), wxSize(120, 24), 0, NULL, wxCB_READONLY);
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
    20
 	m_pViewSel->Append(wxT("General"));
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
    21
 	m_pViewSel->Append(wxT("Streams"));
5514f62da58e add gpac patch
dauphing
parents:
diff changeset
    22
 	m_pViewSel->Append(wxT("Playback"));