Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/backend
diff options
context:
space:
mode:
Diffstat (limited to 'backend')
-rw-r--r--backend/ev-async-renderer.c2
-rw-r--r--backend/ev-document-find.c2
-rw-r--r--backend/ev-document-fonts.c2
-rw-r--r--backend/ev-document-links.c2
-rw-r--r--backend/ev-document-security.c2
-rw-r--r--backend/ev-document-thumbnails.c2
-rw-r--r--backend/ev-document.c2
-rw-r--r--backend/ev-ps-exporter.c2
-rw-r--r--backend/ev-selection.c2
9 files changed, 9 insertions, 9 deletions
diff --git a/backend/ev-async-renderer.c b/backend/ev-async-renderer.c
index 022c0b6..f0ffce4 100644
--- a/backend/ev-async-renderer.c
+++ b/backend/ev-async-renderer.c
@@ -39,7 +39,7 @@ ev_async_renderer_get_type (void)
if (G_UNLIKELY (type == 0))
{
- static const GTypeInfo our_info =
+ const GTypeInfo our_info =
{
sizeof (EvAsyncRendererIface),
NULL,
diff --git a/backend/ev-document-find.c b/backend/ev-document-find.c
index 1be43b9..02fbae2 100644
--- a/backend/ev-document-find.c
+++ b/backend/ev-document-find.c
@@ -32,7 +32,7 @@ ev_document_find_get_type (void)
if (G_UNLIKELY (type == 0))
{
- static const GTypeInfo our_info =
+ const GTypeInfo our_info =
{
sizeof (EvDocumentFindIface),
ev_document_find_base_init,
diff --git a/backend/ev-document-fonts.c b/backend/ev-document-fonts.c
index 854383d..929c21d 100644
--- a/backend/ev-document-fonts.c
+++ b/backend/ev-document-fonts.c
@@ -32,7 +32,7 @@ ev_document_fonts_get_type (void)
if (G_UNLIKELY (type == 0))
{
- static const GTypeInfo our_info =
+ const GTypeInfo our_info =
{
sizeof (EvDocumentFontsIface),
NULL,
diff --git a/backend/ev-document-links.c b/backend/ev-document-links.c
index daec3ea..d077003 100644
--- a/backend/ev-document-links.c
+++ b/backend/ev-document-links.c
@@ -31,7 +31,7 @@ ev_document_links_get_type (void)
static GType type = 0;
if (G_UNLIKELY (type == 0)) {
- static const GTypeInfo our_info = {
+ const GTypeInfo our_info = {
sizeof (EvDocumentLinksIface),
NULL,
NULL,
diff --git a/backend/ev-document-security.c b/backend/ev-document-security.c
index 5458ccc..49ded87 100644
--- a/backend/ev-document-security.c
+++ b/backend/ev-document-security.c
@@ -32,7 +32,7 @@ ev_document_security_get_type (void)
if (G_UNLIKELY (type == 0))
{
- static const GTypeInfo our_info =
+ const GTypeInfo our_info =
{
sizeof (EvDocumentSecurityIface),
NULL,
diff --git a/backend/ev-document-thumbnails.c b/backend/ev-document-thumbnails.c
index f537afd..c560cec 100644
--- a/backend/ev-document-thumbnails.c
+++ b/backend/ev-document-thumbnails.c
@@ -29,7 +29,7 @@ ev_document_thumbnails_get_type (void)
if (G_UNLIKELY (type == 0))
{
- static const GTypeInfo our_info =
+ const GTypeInfo our_info =
{
sizeof (EvDocumentThumbnailsIface),
NULL,
diff --git a/backend/ev-document.c b/backend/ev-document.c
index 8598c11..94647c6 100644
--- a/backend/ev-document.c
+++ b/backend/ev-document.c
@@ -37,7 +37,7 @@ ev_document_get_type (void)
if (G_UNLIKELY (type == 0))
{
- static const GTypeInfo our_info =
+ const GTypeInfo our_info =
{
sizeof (EvDocumentIface),
NULL,
diff --git a/backend/ev-ps-exporter.c b/backend/ev-ps-exporter.c
index 56944a6..18c3536 100644
--- a/backend/ev-ps-exporter.c
+++ b/backend/ev-ps-exporter.c
@@ -31,7 +31,7 @@ ev_ps_exporter_get_type (void)
if (G_UNLIKELY (type == 0))
{
- static const GTypeInfo our_info =
+ const GTypeInfo our_info =
{
sizeof (EvPSExporterIface),
NULL,
diff --git a/backend/ev-selection.c b/backend/ev-selection.c
index 36c32e3..2aa45a7 100644
--- a/backend/ev-selection.c
+++ b/backend/ev-selection.c
@@ -31,7 +31,7 @@ ev_selection_get_type (void)
if (G_UNLIKELY (type == 0))
{
- static const GTypeInfo our_info =
+ const GTypeInfo our_info =
{
sizeof (EvSelectionIface),
ev_selection_base_init,