From 246955d2926df5b214cd17c5affc2e47887104ee Mon Sep 17 00:00:00 2001 From: eidheim Date: Sun, 10 Jan 2016 12:04:53 +0100 Subject: [PATCH] Minor change --- src/window.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.cc b/src/window.cc index 9dbd011..cb31622 100644 --- a/src/window.cc +++ b/src/window.cc @@ -926,7 +926,7 @@ void Window::set_menu_actions() { row+=" - "+Glib::Markup::escape_text(frame.function_name); else { auto file_path=boost::filesystem::path(frame.file_path).filename().string(); - row+=":"+Glib::Markup::escape_text(file_path)+":"+std::to_string(frame.line_nr)+" - "+Glib::Markup::escape_text(frame.function_name); + row+=":"+Glib::Markup::escape_text(file_path)+":"+std::to_string(frame.line_nr)+" - "+Glib::Markup::escape_text(frame.function_name); } (*rows)[row]=frame; view->selection_dialog->add_row(row);