Commit 3248746c authored by Olivier Teulière's avatar Olivier Teulière

 * ./plugins/win32/about.*: Added the version number in the About box
parent fbb7ae73
...@@ -40,6 +40,7 @@ __fastcall TAboutDlg::TAboutDlg( TComponent* Owner ) ...@@ -40,6 +40,7 @@ __fastcall TAboutDlg::TAboutDlg( TComponent* Owner )
: TForm( Owner ) : TForm( Owner )
{ {
Image1->Picture->Icon = p_intfGlobal->p_sys->p_window->Icon; Image1->Picture->Icon = p_intfGlobal->p_sys->p_window->Icon;
LabelVersion->Caption = "Version " VLC_VERSION;
} }
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
......
...@@ -296,6 +296,13 @@ object AboutDlg: TAboutDlg ...@@ -296,6 +296,13 @@ object AboutDlg: TAboutDlg
Height = 13 Height = 13
Caption = 'http://www.videolan.org/' Caption = 'http://www.videolan.org/'
end end
object LabelVersion: TLabel
Left = 114
Top = 40
Width = 59
Height = 13
Caption = 'Version x.y.z'
end
object BitBtnOk: TBitBtn object BitBtnOk: TBitBtn
Left = 64 Left = 64
Top = 178 Top = 178
......
...@@ -41,6 +41,7 @@ __published: // IDE-managed Components ...@@ -41,6 +41,7 @@ __published: // IDE-managed Components
TLabel *Label3; TLabel *Label3;
TImage *Image1; TImage *Image1;
TLabel *Label5; TLabel *Label5;
TLabel *LabelVersion;
private: // User declarations private: // User declarations
public: // User declarations public: // User declarations
__fastcall TAboutDlg( TComponent* Owner ); __fastcall TAboutDlg( TComponent* Owner );
......
...@@ -59,8 +59,9 @@ __fastcall TMainFrameDlg::TMainFrameDlg( TComponent* Owner ) ...@@ -59,8 +59,9 @@ __fastcall TMainFrameDlg::TMainFrameDlg( TComponent* Owner )
TrackBar->Max = SLIDER_MAX_VALUE; TrackBar->Max = SLIDER_MAX_VALUE;
/* default height */ /* default height and caption */
ClientHeight = 37 + ToolBar->Height; ClientHeight = 37 + ToolBar->Height;
Caption = VOUT_TITLE " (Win32 interface)";
StringListPref = new TStringList(); StringListPref = new TStringList();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment