VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/doc/html/ru/arrow_right.gif
blob: 665bf8eff3a08216cb93eb47b68d1614a6e4fa50 (plain)
ofshex dumpascii
0000 47 49 46 38 39 61 04 00 07 00 80 00 00 ff ff ff d1 8d 0f 21 f9 04 01 00 00 00 00 2c 00 00 00 00 GIF89a.............!.......,....
0020 04 00 07 00 00 02 08 4c 00 86 a8 69 e7 d6 2a 00 3b .......L...i..*.;
ref='#n11'>11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/*
 Derived from source code of TrueCrypt 7.1a, which is
 Copyright (c) 2008-2012 TrueCrypt Developers Association and which is governed
 by the TrueCrypt License 3.0.

 Modifications and additions to the original source code (contained in this file)
 and all other portions of this file are Copyright (c) 2013-2017 IDRIX
 and are governed by the Apache License 2.0 the full text of which is
 contained in the file License.txt included in VeraCrypt binary and source
 code distribution packages.
*/

#include "System.h"
#include "LegalNoticesDialog.h"
#include "Main/GraphicUserInterface.h"
#include "Main/Resources.h"

namespace VeraCrypt
{
	LegalNoticesDialog::LegalNoticesDialog (wxWindow* parent) : LegalNoticesDialogBase (parent)
	{
		LegalNoticesTextCtrl->SetMinSize (wxSize (
			Gui->GetCharWidth (LegalNoticesTextCtrl) * 88,
			Gui->GetCharHeight (LegalNoticesTextCtrl) * 28));

		Layout();
		Fit();
		Center();

		LegalNoticesTextCtrl->ChangeValue (StringConverter::ToWide (Resources::GetLegalNotices()));
	}
}