~kazade/reem/trunk

« back to all changes in this revision

Viewing changes to src/indicator_applet.cpp

  • Committer: Luke Benstead
  • Date: 2011-05-12 16:28:47 UTC
  • Revision ID: kazade@gmail.com-20110512162847-yp7n9l3xjja221a9
Minor fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
#include "indicator_loader.h"
5
5
#include "indicator_button.h"
6
6
 
7
 
IndicatorApplet::IndicatorApplet():
 
7
IndicatorApplet::IndicatorApplet(const std::vector<std::string>& ignore, const std::vector<std::string>& include_only):
8
8
    alignment_(NULL) {
9
9
 
10
 
    loader_.reset(new IndicatorLoader());
 
10
    loader_.reset(new IndicatorLoader(ignore, include_only));
11
11
    alignment_ = Gtk::manage(new Gtk::Alignment());
12
12
 
13
13
    build_indicator_entries();