summaryrefslogtreecommitdiff
path: root/src/gui/gui_popupcalendar.pas
diff options
context:
space:
mode:
authorgraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2008-03-04 13:38:17 +0000
committergraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2008-03-04 13:38:17 +0000
commitb9a8fee7794d03513a6d8b7bfb3f77df811582da (patch)
tree4d3967e00bc835e79b48e6688d186b913ed98ec5 /src/gui/gui_popupcalendar.pas
parentcfbb1096706f6234cf8ac8fb0feefaae8b881ba9 (diff)
downloadfpGUI-b9a8fee7794d03513a6d8b7bfb3f77df811582da.tar.xz
* More more on the MiG Layout port.
* Added new resourcestring constants to the translation language files. * Localized all the GUI units.
Diffstat (limited to 'src/gui/gui_popupcalendar.pas')
-rw-r--r--src/gui/gui_popupcalendar.pas19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/gui/gui_popupcalendar.pas b/src/gui/gui_popupcalendar.pas
index 506482d7..cf70b2be 100644
--- a/src/gui/gui_popupcalendar.pas
+++ b/src/gui/gui_popupcalendar.pas
@@ -1,7 +1,7 @@
{
fpGUI - Free Pascal GUI Library
- Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this
+ Copyright (C) 2006 - 2008 See the file AUTHORS.txt, included in this
distribution, for details of the copyright.
See the file COPYING.modifiedLGPL, included in this distribution,
@@ -142,7 +142,8 @@ type
implementation
uses
- gui_scrollbar;
+ gui_scrollbar
+ ,gfx_constants;
{@VFD_NEWFORM_IMPL}
@@ -575,13 +576,13 @@ begin
begin
Name := 'grdName1';
SetPosition(0, 23, 233, 119);
- AddColumn('Mon', 33, taCenter);
- AddColumn('Tue', 32, taCenter);
- AddColumn('Wed', 33, taCenter);
- AddColumn('Thu', 32, taCenter);
- AddColumn('Fri', 33, taCenter);
- AddColumn('Sat', 32, taCenter);
- AddColumn('Sun', 33, taCenter);
+ AddColumn(rsShortMon, 33, taCenter);
+ AddColumn(rsShortTue, 32, taCenter);
+ AddColumn(rsShortWed, 33, taCenter);
+ AddColumn(rsShortThu, 32, taCenter);
+ AddColumn(rsShortFri, 33, taCenter);
+ AddColumn(rsShortSat, 32, taCenter);
+ AddColumn(rsShortSun, 33, taCenter);
FontDesc := '#Grid';
HeaderFontDesc := '#GridHeader';
RowCount := 6;