summaryrefslogtreecommitdiff
path: root/src/solution_item.cc
diff options
context:
space:
mode:
authorDaniel Burrows <dburrows@debian.org>2007-11-15 07:35:09 -0800
committerDaniel Burrows <dburrows@debian.org>2007-11-15 07:35:09 -0800
commit128c5eea82390957450b0e7e5ded7776d6e7ed50 (patch)
tree2e8dd648a88d72e0dea1bf5ffd4111c013887d93 /src/solution_item.cc
parentf8bb7dfb18b8f7207e0b0c1da6954aafbfc1c23e (diff)
downloadaptitude-128c5eea82390957450b0e7e5ded7776d6e7ed50.tar.gz
Uniformly replace widgets::X with cw::X in .cc files.
Diffstat (limited to 'src/solution_item.cc')
-rw-r--r--src/solution_item.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/solution_item.cc b/src/solution_item.cc
index 36c3c4e8..79ebb585 100644
--- a/src/solution_item.cc
+++ b/src/solution_item.cc
@@ -160,7 +160,7 @@ style solution_item::get_normal_style()
return style();
}
-bool solution_item::dispatch_key(const cwi::key &k, widgets::tree *owner)
+bool solution_item::dispatch_key(const cwi::key &k, cw::tree *owner)
{
if(cw::config::global_bindings.key_matches(k, "SolutionActionReject"))
{
@@ -173,7 +173,7 @@ bool solution_item::dispatch_key(const cwi::key &k, widgets::tree *owner)
owner->line_down();
}
else
- return widgets::treeitem::dispatch_key(k, owner);
+ return cw::treeitem::dispatch_key(k, owner);
return true;
}
@@ -293,7 +293,7 @@ void solution_act_item::show_target_info()
ssprintf(_("Information about %s"), pkg.Name()));
}
-bool solution_act_item::dispatch_key(const cwi::key &k, widgets::tree *owner)
+bool solution_act_item::dispatch_key(const cwi::key &k, cw::tree *owner)
{
if(cw::config::global_bindings.key_matches(k, "InfoScreen"))
{
@@ -304,7 +304,7 @@ bool solution_act_item::dispatch_key(const cwi::key &k, widgets::tree *owner)
return solution_item::dispatch_key(k, owner);
}
-void solution_act_item::paint(widgets::tree *win, int y, bool hierarchical, const cw::style const style &st)
+void solution_act_item::paint(cw::tree *win, int y, bool hierarchical, const cw::style const style &st)
{
unsigned int basex = hierarchical ? 2*get_depth() : 0;
unsigned int width = win->getmaxx();
@@ -396,7 +396,7 @@ bool solution_act_item::view_target()
-void solution_act_item_bare::paint(widgets::tree *win, int y, bool hierarchical, const cw::style const style &st)
+void solution_act_item_bare::paint(cw::tree *win, int y, bool hierarchical, const cw::style const style &st)
{
unsigned int basex = hierarchical ? 2*get_depth() : 0;
unsigned int width = win->getmaxx();
@@ -559,7 +559,7 @@ void solution_unresolved_item::unmandate()
resman->unapprove_broken_dep(d);
}
-void solution_unresolved_item::paint(widgets::tree *win, int y, bool hierarchical, const cw::style const style &st)
+void solution_unresolved_item::paint(cw::tree *win, int y, bool hierarchical, const cw::style const style &st)
{
unsigned int basex = hierarchical ? 2*get_depth() : 0;
unsigned int width = win->getmaxx();