summaryrefslogtreecommitdiff
path: root/source/helpers
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2016-12-21 17:41:59 +0100
committerTor Andersson <tor.andersson@artifex.com>2016-12-27 15:06:51 +0100
commit0805c1add0e3fc951d16c27d3837bc5123842303 (patch)
treebdce2e6e246f0f693552423c9b554092ce47a689 /source/helpers
parente22743070ff1f3d4cc83177c4669476fd2526844 (diff)
downloadmupdf-0805c1add0e3fc951d16c27d3837bc5123842303.tar.xz
Strip extraneous blank lines.
Diffstat (limited to 'source/helpers')
-rw-r--r--source/helpers/mu-office-lib/mu-office-lib.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/source/helpers/mu-office-lib/mu-office-lib.c b/source/helpers/mu-office-lib/mu-office-lib.c
index e2e5f6f5..b21ca976 100644
--- a/source/helpers/mu-office-lib/mu-office-lib.c
+++ b/source/helpers/mu-office-lib/mu-office-lib.c
@@ -165,7 +165,6 @@ static fz_locks_context *init_muoffice_locks(MuOfficeLib *mu)
return &mu->locks;
}
-
MuError MuOfficeLib_create(MuOfficeLib **pMu)
{
MuOfficeLib *mu;
@@ -220,7 +219,6 @@ void MuOfficeLib_destroy(MuOfficeLib *mu)
Pal_Mem_free(mu);
}
-
/**
* Perform MuPDF native operations on a given MuOfficeLib
* instance.
@@ -486,7 +484,6 @@ int MuOfficeDoc_providePassword(MuOfficeDoc *doc, const char *password)
return MuError_OK;
}
-
/**
* Return the type of an open document
*
@@ -499,7 +496,6 @@ MuOfficeDocType MuOfficeDoc_docType(MuOfficeDoc *doc)
return /* FIXME */MuOfficeDocType_PDF;
}
-
static void
ensure_doc_loaded(MuOfficeDoc *doc)
{
@@ -509,7 +505,6 @@ ensure_doc_loaded(MuOfficeDoc *doc)
mu_destroy_thread(&doc->thread);
}
-
/**
* Return the number of pages of a document
*
@@ -553,7 +548,6 @@ MuError MuOfficeDoc_getNumPages(MuOfficeDoc *doc, int *pNumPages)
return err;
}
-
/**
* Determine if the document has been modified
*
@@ -586,7 +580,6 @@ int MuOfficeDoc_hasBeenModified(MuOfficeDoc *doc)
return modified;
}
-
/**
* Start a save operation
*
@@ -605,7 +598,6 @@ MuError MuOfficeDoc_save( MuOfficeDoc *doc,
return MuError_NotImplemented; /* FIXME */
}
-
/**
* Stop a document loading. The document is not destroyed, but
* no further content will be read from the file.
@@ -624,7 +616,6 @@ void MuOfficeDoc_abortLoad(MuOfficeDoc *doc)
mu_trigger_semaphore(&doc->password_sem);
}
-
/**
* Destroy a MuOfficeDoc object. Loading of the document is shutdown
* and no further callbacks will be issued for the specified object.
@@ -703,7 +694,6 @@ MuError MuOfficeDoc_getPage( MuOfficeDoc *doc,
return err;
}
-
/**
* Perform MuPDF native operations on a given document.
*
@@ -758,7 +748,6 @@ MuError MuOfficeDoc_run(MuOfficeDoc *doc, void (*fn)(fz_context *ctx, fz_documen
return err;
}
-
/**
* Destroy a page object
*
@@ -789,7 +778,6 @@ void MuOfficePage_destroy(MuOfficePage *page)
fz_free(doc->ctx, page);
}
-
/**
* Get the size of a page in pixels
*
@@ -830,7 +818,6 @@ MuError MuOfficePage_getSize( MuOfficePage *page,
return MuError_OK;
}
-
/**
* Return the zoom factors necessary to render at to a given
* size in pixels. (deprecated)
@@ -874,7 +861,6 @@ MuError MuOfficePage_calculateZoom( MuOfficePage *page,
return MuError_OK;
}
-
/**
* Get the size of a page in pixels for a specified zoom factor
* (deprecated)
@@ -1056,7 +1042,6 @@ fail:
fz_drop_context(ctx);
}
-
/**
* Schedule the rendering of an area of document page to
* an area of a bitmap.