[pan2: 6/8] fix



commit 12b3feddc7cfbd717c08df56f0a158cb0dc00bdb
Author: Heinrich Müller <henmull src gnome org>
Date:   Thu Jun 6 23:00:35 2013 +0200

    fix

 pan/gui/Makefile.am |    2 ++
 pan/gui/gui.cc      |    1 +
 pan/gui/gui.h       |    2 ++
 3 files changed, 5 insertions(+), 0 deletions(-)
---
diff --git a/pan/gui/Makefile.am b/pan/gui/Makefile.am
index 72f0fd8..99bfaba 100644
--- a/pan/gui/Makefile.am
+++ b/pan/gui/Makefile.am
@@ -16,6 +16,7 @@ libpangui_a_SOURCES = \
  group-prefs.cc \
  group-prefs-dialog.cc \
  header-pane.cc \
+ search-pane.cc \
  hig.cc \
  log-ui.cc \
  pan-file-entry.cc \
@@ -56,6 +57,7 @@ noinst_HEADERS = \
  gtk-compat.h \
  gui.h \
  header-pane.h \
+ search-pane.h \
  hig.h \
  license.h \
  log-ui.h \
diff --git a/pan/gui/gui.cc b/pan/gui/gui.cc
index 9c87c0a..3f69058 100644
--- a/pan/gui/gui.cc
+++ b/pan/gui/gui.cc
@@ -249,6 +249,7 @@ GUI :: GUI (Data& data, Queue& queue, Prefs& prefs, GroupPrefs& group_prefs, Dow
 
   _group_pane = new GroupPane (*this, data, _prefs, _group_prefs);
   _header_pane = new HeaderPane (*this, data, _queue, _cache, _prefs, _group_prefs, *this, *this);
+  _search_pane = new SearchPane (data, queue, *this, *this);
   _body_pane = new BodyPane (data, _cache, _prefs, _group_prefs, _queue, _header_pane);
 
   std::string path = "/ui/main-window-toolbar";
diff --git a/pan/gui/gui.h b/pan/gui/gui.h
index e67fd07..b60b54d 100644
--- a/pan/gui/gui.h
+++ b/pan/gui/gui.h
@@ -42,6 +42,7 @@ namespace pan
 {
   class GroupPane;
   class HeaderPane;
+  class SearchPane;
   class BodyPane;
   class ProgressView;
 
@@ -253,6 +254,7 @@ namespace pan
       GtkWidget * _toolbar;
       GroupPane * _group_pane;
       HeaderPane * _header_pane;
+      SearchPane * _search_pane;
       BodyPane * _body_pane;
       GtkUIManager * _ui_manager;
 


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