~azzar1/unity/scale-left-padding

« back to all changes in this revision

Viewing changes to plugins/unityshell/src/DashView.cpp

  • Committer: Andrea Azzarone
  • Date: 2011-12-19 22:18:53 UTC
  • mfrom: (1792 unity)
  • mto: This revision was merged to the branch mainline in revision 1833.
  • Revision ID: azzaronea@gmail.com-20111219221853-wyy8fqwxk78s85ct
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
  SetLayout(layout_);
117
117
 
118
118
  content_layout_ = new nux::VLayout();
119
 
  content_layout_->SetHorizontalExternalMargin(1);
120
 
  content_layout_->SetVerticalExternalMargin(1);
 
119
  content_layout_->SetHorizontalExternalMargin(0);
 
120
  content_layout_->SetVerticalExternalMargin(0);
121
121
 
122
122
  layout_->AddLayout(content_layout_, 1, nux::MINOR_POSITION_LEFT, nux::MINOR_SIZE_FULL);
123
123
  search_bar_ = new SearchBar();
877
877
}
878
878
 
879
879
// Introspectable
880
 
const gchar* DashView::GetName()
 
880
std::string DashView::GetName() const
881
881
{
882
882
  return "DashView";
883
883
}