mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2025-01-30 19:04:56 +01:00
Rename functions
This commit is contained in:
parent
5b1a07e36c
commit
5012443ea4
2 changed files with 5 additions and 5 deletions
|
@ -199,7 +199,7 @@ zathura_annotation_set_name(zathura_annotation_t* annotation, const char* name)
|
|||
}
|
||||
|
||||
time_t
|
||||
zathura_annotation_get_modified(zathura_annotation_t* annotation)
|
||||
zathura_annotation_get_modification_date(zathura_annotation_t* annotation)
|
||||
{
|
||||
if (annotation == NULL) {
|
||||
return (time_t) -1;
|
||||
|
@ -209,7 +209,7 @@ zathura_annotation_get_modified(zathura_annotation_t* annotation)
|
|||
}
|
||||
|
||||
void
|
||||
zathura_annotation_set_modified(zathura_annotation_t* annotation, time_t modification_date)
|
||||
zathura_annotation_set_modification_date(zathura_annotation_t* annotation, time_t modification_date)
|
||||
{
|
||||
if (annotation == NULL) {
|
||||
return;
|
||||
|
|
|
@ -173,7 +173,7 @@ void zathura_annotation_set_name(zathura_annotation_t* annotation, const char* n
|
|||
* @param annotation The annotation
|
||||
* @return The date on which the annotation has been modified the last time
|
||||
*/
|
||||
time_t zathura_annotation_get_modified(zathura_annotation_t* annotation);
|
||||
time_t zathura_annotation_get_modification_date(zathura_annotation_t* annotation);
|
||||
|
||||
/**
|
||||
* Sets the date on which the annotation has been modified the last time
|
||||
|
@ -181,7 +181,7 @@ time_t zathura_annotation_get_modified(zathura_annotation_t* annotation);
|
|||
* @param annotation The annotation
|
||||
* @param modification_date The modification date
|
||||
*/
|
||||
void zathura_annotation_set_modified(zathura_annotation_t* annotation, time_t modification_date);
|
||||
void zathura_annotation_set_modification_date(zathura_annotation_t* annotation, time_t modification_date);
|
||||
|
||||
/**
|
||||
* Returns the page of the annotation
|
||||
|
@ -197,7 +197,7 @@ zathura_page_t* zathura_annotation_get_page(zathura_annotation_t* annotation);
|
|||
* @param annotation The annotation
|
||||
* @param page The page of the annotation
|
||||
*/
|
||||
void zathura_annotation_set_page_index(zathura_annotation_t* annotation, zathura_page_t* page);
|
||||
void zathura_annotation_set_page(zathura_annotation_t* annotation, zathura_page_t* page);
|
||||
|
||||
/**
|
||||
* Retrieves the position of the annotation and saves it into the given
|
||||
|
|
Loading…
Reference in a new issue