[epiphany] history-service: remove unused variables



commit ce80dceb7cbcbb1393b2519a142add4083af01dc
Author: Claudio Saavedra <csaavedra igalia com>
Date:   Tue Mar 27 18:01:29 2012 +0300

    history-service: remove unused variables
    
    https://bugzilla.gnome.org/show_bug.cgi?id=672926

 lib/history/ephy-history-service-private.h |    2 --
 lib/history/ephy-history-service.c         |    1 -
 2 files changed, 0 insertions(+), 3 deletions(-)
---
diff --git a/lib/history/ephy-history-service-private.h b/lib/history/ephy-history-service-private.h
index c616b34..4235e9d 100644
--- a/lib/history/ephy-history-service-private.h
+++ b/lib/history/ephy-history-service-private.h
@@ -27,8 +27,6 @@ struct _EphyHistoryServicePrivate {
   EphySQLiteConnection *history_database;
   GThread *history_thread;
   GAsyncQueue *queue;
-  GMutex history_thread_mutex;
-  gboolean active;
   gboolean scheduled_to_quit;
   gboolean scheduled_to_commit;
 };
diff --git a/lib/history/ephy-history-service.c b/lib/history/ephy-history-service.c
index d618547..6357588 100644
--- a/lib/history/ephy-history-service.c
+++ b/lib/history/ephy-history-service.c
@@ -188,7 +188,6 @@ ephy_history_service_init (EphyHistoryService *self)
 {
   self->priv = EPHY_HISTORY_SERVICE_GET_PRIVATE (self);
 
-  self->priv->active = TRUE;
   self->priv->history_thread = g_thread_new ("EphyHistoryService", (GThreadFunc) run_history_service_thread, self);
   self->priv->queue = g_async_queue_new ();
 }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]