mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-11 08:13:35 +00:00
Bug 320827, fix tree date picker in places.
Original committer: brettw%gmail.com Original revision: 1.31 Original date: 2006/01/27 19:25:05
This commit is contained in:
parent
612f927bac
commit
98d89e5e76
@ -634,6 +634,9 @@ interface nsINavHistoryQuery : nsISupports
|
|||||||
* the time is not part of the query. This is the default, so an empty query
|
* the time is not part of the query. This is the default, so an empty query
|
||||||
* will match any time. The has* functions return whether the corresponding
|
* will match any time. The has* functions return whether the corresponding
|
||||||
* time is considered.
|
* time is considered.
|
||||||
|
*
|
||||||
|
* You can read absolute*Time to get the time value that the currently loaded
|
||||||
|
* reference points + offset resolve to.
|
||||||
*/
|
*/
|
||||||
const PRUint32 TIME_RELATIVE_EPOCH = 0;
|
const PRUint32 TIME_RELATIVE_EPOCH = 0;
|
||||||
const PRUint32 TIME_RELATIVE_TODAY = 1;
|
const PRUint32 TIME_RELATIVE_TODAY = 1;
|
||||||
@ -642,10 +645,12 @@ interface nsINavHistoryQuery : nsISupports
|
|||||||
attribute PRTime beginTime;
|
attribute PRTime beginTime;
|
||||||
attribute PRUint32 beginTimeReference;
|
attribute PRUint32 beginTimeReference;
|
||||||
readonly attribute boolean hasBeginTime;
|
readonly attribute boolean hasBeginTime;
|
||||||
|
readonly attribute PRTime absoluteBeginTime;
|
||||||
|
|
||||||
attribute PRTime endTime;
|
attribute PRTime endTime;
|
||||||
attribute PRUint32 endTimeReference;
|
attribute PRUint32 endTimeReference;
|
||||||
readonly attribute boolean hasEndTime;
|
readonly attribute boolean hasEndTime;
|
||||||
|
readonly attribute PRTime absoluteEndTime;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Text search terms.
|
* Text search terms.
|
||||||
|
Loading…
Reference in New Issue
Block a user