mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-22 14:39:13 +02:00
Changed the delay for the hints from 100 miliseconds to 500. I'm hoping this reduces the crashing for some people until I determine the problem.
Shane git-svn-id: trunk@553 -
This commit is contained in:
parent
c7d9c29788
commit
b036c95a80
10
ide/main.pp
10
ide/main.pp
@ -606,7 +606,7 @@ begin
|
|||||||
with HintTimer1 do
|
with HintTimer1 do
|
||||||
Begin
|
Begin
|
||||||
Enabled := False;
|
Enabled := False;
|
||||||
Interval := 100;
|
Interval := 500;
|
||||||
OnTimer := @HintTimer1Timer;
|
OnTimer := @HintTimer1Timer;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -5478,6 +5478,10 @@ end.
|
|||||||
=======
|
=======
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.193 2001/12/20 19:11:22 lazarus
|
||||||
|
Changed the delay for the hints from 100 miliseconds to 500. I'm hoping this reduces the crashing for some people until I determine the problem.
|
||||||
|
Shane
|
||||||
|
|
||||||
Revision 1.192 2001/12/19 22:09:13 lazarus
|
Revision 1.192 2001/12/19 22:09:13 lazarus
|
||||||
MG: added GUID and alias parsing, added DoJumpToCodeToolBossError
|
MG: added GUID and alias parsing, added DoJumpToCodeToolBossError
|
||||||
|
|
||||||
@ -5488,6 +5492,10 @@ end.
|
|||||||
|
|
||||||
<<<<<<< main.pp
|
<<<<<<< main.pp
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.193 2001/12/20 19:11:22 lazarus
|
||||||
|
Changed the delay for the hints from 100 miliseconds to 500. I'm hoping this reduces the crashing for some people until I determine the problem.
|
||||||
|
Shane
|
||||||
|
|
||||||
Revision 1.192 2001/12/19 22:09:13 lazarus
|
Revision 1.192 2001/12/19 22:09:13 lazarus
|
||||||
MG: added GUID and alias parsing, added DoJumpToCodeToolBossError
|
MG: added GUID and alias parsing, added DoJumpToCodeToolBossError
|
||||||
|
|
||||||
|
@ -3118,11 +3118,9 @@ begin
|
|||||||
//set up columns..
|
//set up columns..
|
||||||
//
|
//
|
||||||
gtk_clist_freeze(PgtkCList(Handle));
|
gtk_clist_freeze(PgtkCList(Handle));
|
||||||
Writeln('Column count is ',Columns.Count);
|
|
||||||
for I := 0 to Columns.Count-1 do
|
for I := 0 to Columns.Count-1 do
|
||||||
Begin
|
Begin
|
||||||
ColName := Columns.Item[i].Caption;
|
ColName := Columns.Item[i].Caption;
|
||||||
Writeln('colnmame is ',ColName);
|
|
||||||
GetMem(pColName,Length(colname)+1);
|
GetMem(pColName,Length(colname)+1);
|
||||||
pColName := StrPcopy(pColName,ColName);
|
pColName := StrPcopy(pColName,ColName);
|
||||||
gtk_clist_set_column_title(Pgtkclist(Handle),I,pColName);
|
gtk_clist_set_column_title(Pgtkclist(Handle),I,pColName);
|
||||||
@ -3173,7 +3171,6 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
gtk_clist_thaw(PgtkCList(Handle));
|
gtk_clist_thaw(PgtkCList(Handle));
|
||||||
Writeln('DONE csListView setPRoperties');
|
|
||||||
|
|
||||||
end;
|
end;
|
||||||
else
|
else
|
||||||
@ -3630,6 +3627,10 @@ end;
|
|||||||
{ =============================================================================
|
{ =============================================================================
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.94 2001/12/20 19:11:23 lazarus
|
||||||
|
Changed the delay for the hints from 100 miliseconds to 500. I'm hoping this reduces the crashing for some people until I determine the problem.
|
||||||
|
Shane
|
||||||
|
|
||||||
Revision 1.93 2001/12/19 21:36:05 lazarus
|
Revision 1.93 2001/12/19 21:36:05 lazarus
|
||||||
Added MultiSelect to TListView
|
Added MultiSelect to TListView
|
||||||
Shane
|
Shane
|
||||||
|
Loading…
Reference in New Issue
Block a user