~alan-griffiths/miral/deconflate-output-from-display

« back to all changes in this revision

Viewing changes to miral/window_management_trace.cpp

  • Committer: Alan Griffiths
  • Date: 2017-07-28 13:38:14 UTC
  • Revision ID: alan@octopull.co.uk-20170728133814-vqfsfw270nft86g5
Update API to name active_output correctly

Show diffs side-by-side

added added

removed removed

Lines of Context:
448
448
}
449
449
MIRAL_TRACE_EXCEPTION
450
450
 
451
 
auto miral::WindowManagementTrace::active_display() -> mir::geometry::Rectangle const
 
451
auto miral::WindowManagementTrace::active_output() -> mir::geometry::Rectangle const
452
452
try {
453
453
    log_input();
454
 
    auto result = wrapped.active_display();
 
454
    auto result = wrapped.active_output();
455
455
    std::stringstream out;
456
456
    out << result;
457
457
    mir::log_info("%s -> ", __func__, out.str().c_str());