Index: AE/Installer/trunk/source/about_window.cpp
===================================================================
--- AE/Installer/trunk/source/about_window.cpp	(revision 325)
+++ AE/Installer/trunk/source/about_window.cpp	(revision 327)
@@ -71,8 +71,8 @@
 bool About::Create( wxWindow* parent, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style )
 {
-////@begin About creation
+	////@begin About creation
     SetExtraStyle(wxWS_EX_BLOCK_EVENTS);
     wxDialog::Create( parent, id, caption, pos, size, style );
-
+	
     CreateControls();
     if (GetSizer())
@@ -81,5 +81,5 @@
     }
     Centre();
-////@end About creation
+	////@end About creation
     return true;
 }
@@ -92,6 +92,6 @@
 About::~About()
 {
-////@begin About destruction
-////@end About destruction
+	////@begin About destruction
+	////@end About destruction
 }
 
@@ -103,6 +103,6 @@
 void About::Init()
 {
-////@begin About member initialisation
-////@end About member initialisation
+	////@begin About member initialisation
+	////@end About member initialisation
 }
 
@@ -114,34 +114,34 @@
 void About::CreateControls()
 {    
-////@begin About content construction
+	////@begin About content construction
     About* itemDialog1 = this;
-
+	
     wxBoxSizer* itemBoxSizer2 = new wxBoxSizer(wxVERTICAL);
     itemDialog1->SetSizer(itemBoxSizer2);
-
+	
     wxPanel* itemPanel3 = new wxPanel( itemDialog1, ID_PANEL2, wxDefaultPosition, wxDefaultSize, wxNO_BORDER|wxTAB_TRAVERSAL );
     itemBoxSizer2->Add(itemPanel3, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
-
+	
     wxBoxSizer* itemBoxSizer4 = new wxBoxSizer(wxVERTICAL);
     itemPanel3->SetSizer(itemBoxSizer4);
-
-    wxStaticText* itemStaticText5 = new wxStaticText( itemPanel3, wxID_STATIC, _("Mod Installer v1.0\nby Gumby and Iritscen\n\nThe AE was made possible by:\nNeo - Writing OniSplit, documenting Oni, and lots of technical support\nSsg - Documenting Oni\ngeyser - Guiding the AE work, creating original installer\nSFeLi - Writing the original Daodan DLL\nRossyMiles - Porting the Daodan DLL to C\nGumby - name any AE work you've done here or remove your name\nLoser - Fine-tuning tons of animations\nEdT - Making the BGI troops"), wxDefaultPosition, wxDefaultSize, wxNO_BORDER);
+	
+    wxStaticText* itemStaticText5 = new wxStaticText( itemPanel3, wxID_STATIC, _("Mod Installer v1.0\nby Gumby and Iritscen\n\nAE credited to:\nNeo - Making Onisplit, documenting Oni, and lots of technical support\ngeyser -  Original creator\nIritscen - Installer and making things work on the Mac\nGumby - Not much :)\nLoser - All his Animation work\nEdT - BGI troops\nSFeLi - Original Daodan DLL\nRossyMiles - Daodan DLL port to C"), wxDefaultPosition, wxDefaultSize, wxNO_BORDER );
     itemBoxSizer4->Add(itemStaticText5, 0, wxALIGN_LEFT|wxALL, 5);
-
+	
     wxStaticLine* itemStaticLine6 = new wxStaticLine( itemPanel3, wxID_STATIC, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
     itemBoxSizer4->Add(itemStaticLine6, 0, wxGROW|wxALL, 5);
-
-    wxStaticText* itemStaticText7 = new wxStaticText( itemPanel3, wxID_STATIC, _("oni.bungie.org"), wxDefaultPosition, wxDefaultSize, 0 );
-    itemBoxSizer4->Add(itemStaticText7, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
-
+	
+    wxTextCtrl* itemTextCtrl7 = new wxTextCtrl( itemPanel3, wxID_STATIC, _("oni.bungie.org"), wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxTE_READONLY );
+    itemBoxSizer4->Add(itemTextCtrl7, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
+	
     wxStdDialogButtonSizer* itemStdDialogButtonSizer8 = new wxStdDialogButtonSizer;
-
+	
     itemBoxSizer4->Add(itemStdDialogButtonSizer8, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
     wxButton* itemButton9 = new wxButton( itemPanel3, wxID_OK, _("&OK"), wxDefaultPosition, wxDefaultSize, 0 );
     itemStdDialogButtonSizer8->AddButton(itemButton9);
-
+	
     itemStdDialogButtonSizer8->Realize();
-
-////@end About content construction
+	
+	////@end About content construction
 }
 
@@ -163,8 +163,8 @@
 {
     // Bitmap retrieval
-////@begin About bitmap retrieval
+	////@begin About bitmap retrieval
     wxUnusedVar(name);
     return wxNullBitmap;
-////@end About bitmap retrieval
+	////@end About bitmap retrieval
 }
 
@@ -176,7 +176,7 @@
 {
     // Icon retrieval
-////@begin About icon retrieval
+	////@begin About icon retrieval
     wxUnusedVar(name);
     return wxNullIcon;
-////@end About icon retrieval
+	////@end About icon retrieval
 }
Index: AE/Installer/trunk/source/main_window.cpp
===================================================================
--- AE/Installer/trunk/source/main_window.cpp	(revision 325)
+++ AE/Installer/trunk/source/main_window.cpp	(revision 327)
@@ -1337,7 +1337,7 @@
 {
 	//event.GetSelection
-	titleText->SetLabel(wxT(globalPackages[event.GetSelection()].name.c_str()));
-	creatorText->SetLabel(globalPackages[event.GetSelection()].creator.c_str());
-	descriptionText->SetLabel(globalPackages[event.GetSelection()].readme.c_str());
+	titleText->SetValue(globalPackages[event.GetSelection()].name.c_str());
+	creatorText->SetValue(globalPackages[event.GetSelection()].creator.c_str());
+	descriptionText->SetValue(globalPackages[event.GetSelection()].readme.c_str());
 
 	creatorText->Refresh();
