Don't use ::GetCaretTime() in nsLookAndFeel.mm. It isn't available to 64-bit applications. b=518140 r=mstange

This commit is contained in:
Josh Aas 2009-09-22 16:51:02 -04:00
Родитель 867d3b3296
Коммит ff316746d8
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -376,7 +376,7 @@ NS_IMETHODIMP nsLookAndFeel::GetMetric(const nsMetricID aID, PRInt32 & aMetric)
aMetric = 3;
break;
case eMetric_CaretBlinkTime:
aMetric = ::GetCaretTime() * 1000 / 60;
aMetric = 567;
break;
case eMetric_CaretWidth:
aMetric = 1;