summaryrefslogtreecommitdiff
path: root/unity-shared
diff options
authorJason Smith <jason.smith@canonical.com>2012-08-20 15:59:54 -0400
committerJason Smith <jason.smith@canonical.com>2012-08-20 15:59:54 -0400
commit9606aa941f4df45461fe638f09f7d290d9e8970f (patch)
treed175ad962ac080e3fd03dad2a164c881ef190524 /unity-shared
parent78f16f6c9145f35312af0a8430c6d9f258205461 (diff)
remove unneeded changes for this subset
(bzr r2542.1.13)
Diffstat (limited to 'unity-shared')
-rwxr-xr-x[-rw-r--r--]unity-shared/DashStyle.cpp15
-rwxr-xr-x[-rw-r--r--]unity-shared/DashStyle.h3
2 files changed, 0 insertions, 18 deletions
diff --git a/unity-shared/DashStyle.cpp b/unity-shared/DashStyle.cpp
index 226930c50..8ac12c7d7 100644..100755
--- a/unity-shared/DashStyle.cpp
+++ b/unity-shared/DashStyle.cpp
@@ -220,9 +220,6 @@ public:
LazyLoadTexture group_unexpand_texture_;
LazyLoadTexture group_expand_texture_;
-
- LazyLoadTexture group_grid_texture_;
- LazyLoadTexture group_coverflow_texture_;
LazyLoadTexture star_deselected_texture_;
LazyLoadTexture star_selected_texture_;
@@ -263,8 +260,6 @@ Style::Impl::Impl(Style* owner)
, search_spin_texture_("/search_spin.svg", 32)
, group_unexpand_texture_("/dash_group_unexpand.png")
, group_expand_texture_("/dash_group_expand.png")
- , group_grid_texture_("/grid-view.svg")
- , group_coverflow_texture_ ("/flow-view.svg")
, star_deselected_texture_("/star_deselected.png")
, star_selected_texture_("/star_selected.png")
, star_highlight_texture_("/star_highlight.png")
@@ -2186,16 +2181,6 @@ nux::BaseTexture* Style::GetGroupExpandIcon()
return pimpl->group_expand_texture_.texture();
}
-nux::BaseTexture* Style::GetGroupGridIcon()
-{
- return pimpl->group_grid_texture_.texture();
-}
-
-nux::BaseTexture* Style::GetGroupCoverflowIcon()
-{
- return pimpl->group_coverflow_texture_.texture();
-}
-
nux::BaseTexture* Style::GetStarDeselectedIcon()
{
return pimpl->star_deselected_texture_.texture();
diff --git a/unity-shared/DashStyle.h b/unity-shared/DashStyle.h
index 8d639aa02..440914d7d 100644..100755
--- a/unity-shared/DashStyle.h
+++ b/unity-shared/DashStyle.h
@@ -192,9 +192,6 @@ public:
nux::BaseTexture* GetGroupUnexpandIcon();
nux::BaseTexture* GetGroupExpandIcon();
-
- nux::BaseTexture* GetGroupGridIcon();
- nux::BaseTexture* GetGroupCoverflowIcon();
nux::BaseTexture* GetStarDeselectedIcon();
nux::BaseTexture* GetStarSelectedIcon();