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 )
: TForm( Owner )
{
Image1->Picture->Icon = p_intfGlobal->p_sys->p_window->Icon;
LabelVersion->Caption = "Version " VLC_VERSION;
}
//---------------------------------------------------------------------------
......
......@@ -296,6 +296,13 @@ object AboutDlg: TAboutDlg
Height = 13
Caption = 'http://www.videolan.org/'
end
object LabelVersion: TLabel
Left = 114
Top = 40
Width = 59
Height = 13
Caption = 'Version x.y.z'
end
object BitBtnOk: TBitBtn
Left = 64
Top = 178
......
......@@ -41,6 +41,7 @@ __published: // IDE-managed Components
TLabel *Label3;
TImage *Image1;
TLabel *Label5;
TLabel *LabelVersion;
private: // User declarations
public: // User declarations
__fastcall TAboutDlg( TComponent* Owner );
......
......@@ -59,8 +59,9 @@ __fastcall TMainFrameDlg::TMainFrameDlg( TComponent* Owner )
TrackBar->Max = SLIDER_MAX_VALUE;
/* default height */
/* default height and caption */
ClientHeight = 37 + ToolBar->Height;
Caption = VOUT_TITLE " (Win32 interface)";
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