summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uidesigner/vfddesigner.pas4
-rw-r--r--uidesigner/vfdforms.pas5
2 files changed, 4 insertions, 5 deletions
diff --git a/uidesigner/vfddesigner.pas b/uidesigner/vfddesigner.pas
index aff9d543..0de305cb 100644
--- a/uidesigner/vfddesigner.pas
+++ b/uidesigner/vfddesigner.pas
@@ -1,7 +1,7 @@
{
fpGUI - Free Pascal GUI Toolkit
- Copyright (C) 2006 - 2013 See the file AUTHORS.txt, included in this
+ Copyright (C) 2006 - 2014 See the file AUTHORS.txt, included in this
distribution, for details of the copyright.
See the file COPYING.modifiedLGPL, included in this distribution,
@@ -683,7 +683,7 @@ var
begin
frm := TWidgetOrderForm.Create(nil);
frm.WindowTitle := cEditOrder[AMode];
- frm.Title := cEditOrder[AMode];
+ frm.Title := maindsgn.selectedform.Form.Name;
frm.Treeview1.RootNode.Clear;
lFocused := nil;
diff --git a/uidesigner/vfdforms.pas b/uidesigner/vfdforms.pas
index ba16fd24..ea7265df 100644
--- a/uidesigner/vfdforms.pas
+++ b/uidesigner/vfdforms.pas
@@ -1,7 +1,7 @@
{
fpGUI - Free Pascal GUI Toolkit
- Copyright (C) 2006 - 2013 See the file AUTHORS.txt, included in this
+ Copyright (C) 2006 - 2014 See the file AUTHORS.txt, included in this
distribution, for details of the copyright.
See the file COPYING.modifiedLGPL, included in this distribution,
@@ -293,7 +293,6 @@ procedure TWidgetOrderForm.SetupCaptions;
begin
inherited SetupCaptions;
WindowTitle := rsDlgWidgetOrder;
- lblTitle.Text := fpgAddColon(rsFormTitle);
btnOK.Text := rsOK;
btnCancel.Text := rsCancel;
btnUp.Text := rsUp;
@@ -330,7 +329,7 @@ begin
SetPosition(4, 4, 248, 16);
FontDesc := '#Label1';
Hint := '';
- Text := 'Form %s:';
+ Text := 'Form: %s';
end;
btnOK := TfpgButton.Create(self);