Browse Source

Now only shows filename in backtrace dialog

merge-requests/365/head
eidheim 10 years ago
parent
commit
76493b7081
  1. 13
      src/window.cc

13
src/window.cc

@ -938,23 +938,12 @@ void Window::set_menu_actions() {
if(backtrace.size()==0) if(backtrace.size()==0)
return; return;
std::string project_path;
auto cmake=get_cmake();
if(cmake)
project_path=cmake->project_path.string();
for(auto &frame: backtrace) { for(auto &frame: backtrace) {
std::string row; std::string row;
if(frame.file_path.empty()) if(frame.file_path.empty())
row=frame.function_name; row=frame.function_name;
else { else {
auto file_path=frame.file_path; auto file_path=boost::filesystem::path(frame.file_path).filename().string();
if(!project_path.empty()) {
auto pos=file_path.find(project_path);
if(pos==0)
file_path.erase(0, project_path.size()+1);
}
row="<b>"+Glib::Markup::escape_text(file_path)+":"+std::to_string(frame.line_nr)+"</b> "+Glib::Markup::escape_text(frame.function_name); row="<b>"+Glib::Markup::escape_text(file_path)+":"+std::to_string(frame.line_nr)+"</b> "+Glib::Markup::escape_text(frame.function_name);
} }
(*rows)[row]=frame; (*rows)[row]=frame;

Loading…
Cancel
Save