summaryrefslogtreecommitdiff
path: root/UPreferences.pas
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@users.sourceforge.net>2008-06-14 18:34:02 +0200
committerTomas Bzatek <tbzatek@users.sourceforge.net>2008-06-14 18:34:02 +0200
commitc9a02bf590248c0bd8e1343198d3f9c13ce118c1 (patch)
treecbd1b07cea6f3ccea7fc98c58d65f568e69e8527 /UPreferences.pas
parentb1dfa430702770c83c815bec24f1dc72175e1e5e (diff)
downloadtuxcmd-c9a02bf590248c0bd8e1343198d3f9c13ce118c1.tar.xz
Port to new ULibc unit, drop dependency to compiler Libc libraryv0.6.43
(preparation for PPC port)
Diffstat (limited to 'UPreferences.pas')
-rw-r--r--UPreferences.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/UPreferences.pas b/UPreferences.pas
index 9c73adc..6a799d5 100644
--- a/UPreferences.pas
+++ b/UPreferences.pas
@@ -23,7 +23,7 @@ interface
uses
glib2, gtk2, pango, SysUtils, Types, Classes, Variants, GTKControls, GTKForms, GTKStdCtrls, GTKExtCtrls, GTKConsts, GTKView,
- GTKUtils, GTKDialogs, GTKPixbuf, GTKClasses, GTKMenus, Libc,
+ GTKUtils, GTKDialogs, GTKPixbuf, GTKClasses, GTKMenus, ULibc,
UCoreClasses, UGnome;
type
@@ -254,7 +254,7 @@ begin
Table2.AddControlEx(1, 6, 1, 1, CmdLineBehaviourLabel, [taoShrink, taoFill], [taoShrink, taoExpand, taoFill], 0, 2);
Table2.AddControlEx(2, 6, 2, 1, TerminalOptionMenu, [taoShrink, taoFill], [taoShrink, taoExpand, taoFill], 10, 2);
- FormatTime := Libc.__time(nil);
+ FormatTime := libc_time(nil);
DateFormatLabel := TGTKLabel.Create(Self);
DateFormatLabel.Caption := 'Date _format:';
DateFormatLabel.XAlign := 0;