1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-07 03:56:28 +02:00

* ./plugins/win32/about.*: Added the version number in the About box

This commit is contained in:
Olivier Teulière 2002-07-09 22:15:49 +00:00
parent fbb7ae7334
commit 3248746c54
4 changed files with 11 additions and 1 deletions

View File

@ -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;
}
//---------------------------------------------------------------------------

View File

@ -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

View File

@ -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 );

View File

@ -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();
}