[nemiver] Adjsut to new ActionEntry layout
- From: Dodji Seketeli <dodji src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [nemiver] Adjsut to new ActionEntry layout
- Date: Sat, 1 Aug 2009 10:34:00 +0000 (UTC)
commit e1449d5e5503562988af860eb754ac501638776e
Author: Dodji Seketeli <dodji redhat com>
Date: Sat Aug 1 11:41:30 2009 +0200
Adjsut to new ActionEntry layout
* src/persp/dbgperspective/nmv-breakpoints-view.cc:
(BreakpointsView::Priv::init_actions): Adjust to the new
ActionEntry layout that now has an ActionEntry::is_important
member.
* src/persp/dbgperspective/nmv-call-stack.cc:
(CallStack::Priv::init_actions): Likewise.
* src/persp/dbgperspective/nmv-local-vars-inspector.cc:
(LocalVarsInspector::Priv::init_actions): Likewise.
* src/persp/dbgperspective/nmv-var-inspector.cc:
(VarInspector::Priv::init_actions): Likewise.
src/persp/dbgperspective/nmv-breakpoints-view.cc | 6 ++++--
src/persp/dbgperspective/nmv-call-stack.cc | 3 ++-
.../dbgperspective/nmv-local-vars-inspector.cc | 9 ++++++---
src/persp/dbgperspective/nmv-var-inspector.cc | 6 ++++--
4 files changed, 16 insertions(+), 8 deletions(-)
---
diff --git a/src/persp/dbgperspective/nmv-breakpoints-view.cc b/src/persp/dbgperspective/nmv-breakpoints-view.cc
index 902885b..ed19ec6 100644
--- a/src/persp/dbgperspective/nmv-breakpoints-view.cc
+++ b/src/persp/dbgperspective/nmv-breakpoints-view.cc
@@ -521,7 +521,8 @@ public:
_("Remove this breakpoint"),
sigc::mem_fun (*this, &Priv::on_breakpoint_delete_action),
ui_utils::ActionEntry::DEFAULT,
- ""
+ "",
+ false
},
{
"GoToSourceBreakpointMenuItemAction",
@@ -531,7 +532,8 @@ public:
sigc::mem_fun (*this,
&Priv::on_breakpoint_go_to_source_action),
ui_utils::ActionEntry::DEFAULT,
- ""
+ "",
+ false
}
};
diff --git a/src/persp/dbgperspective/nmv-call-stack.cc b/src/persp/dbgperspective/nmv-call-stack.cc
index 34e0fad..83d9ba3 100644
--- a/src/persp/dbgperspective/nmv-call-stack.cc
+++ b/src/persp/dbgperspective/nmv-call-stack.cc
@@ -169,7 +169,8 @@ struct CallStack::Priv {
(*this,
&Priv::on_call_stack_copy_to_clipboard_action),
ui_utils::ActionEntry::DEFAULT,
- ""
+ "",
+ false
}
};
diff --git a/src/persp/dbgperspective/nmv-local-vars-inspector.cc b/src/persp/dbgperspective/nmv-local-vars-inspector.cc
index 777df0c..3562767 100644
--- a/src/persp/dbgperspective/nmv-local-vars-inspector.cc
+++ b/src/persp/dbgperspective/nmv-local-vars-inspector.cc
@@ -242,7 +242,8 @@ public:
(*this,
&Priv::on_variable_path_expr_copy_to_clipboard_action),
ui_utils::ActionEntry::DEFAULT,
- ""
+ "",
+ false
},
{
"CopyVariableValueMenuItemAction",
@@ -253,7 +254,8 @@ public:
(*this,
&Priv::on_variable_value_copy_to_clipboard_action),
ui_utils::ActionEntry::DEFAULT,
- ""
+ "",
+ false
},
{
"CreateWatchpointMenuItemAction",
@@ -265,7 +267,8 @@ public:
(*this,
&Priv::on_create_watchpoint_action),
ui_utils::ActionEntry::DEFAULT,
- ""
+ "",
+ false
},
};
diff --git a/src/persp/dbgperspective/nmv-var-inspector.cc b/src/persp/dbgperspective/nmv-var-inspector.cc
index 6143e94..ca89fc5 100644
--- a/src/persp/dbgperspective/nmv-var-inspector.cc
+++ b/src/persp/dbgperspective/nmv-var-inspector.cc
@@ -128,7 +128,8 @@ class VarInspector::Priv : public sigc::trackable {
(*this,
&Priv::on_variable_path_expr_copy_to_clipboard_action),
ui_utils::ActionEntry::DEFAULT,
- ""
+ "",
+ false
},
{
"CopyVariableValueMenuItemAction",
@@ -139,7 +140,8 @@ class VarInspector::Priv : public sigc::trackable {
(*this,
&Priv::on_variable_value_copy_to_clipboard_action),
ui_utils::ActionEntry::DEFAULT,
- ""
+ "",
+ false
}
};
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]