~ubuntu-branches/ubuntu/wily/mir/wily-proposed

« back to all changes in this revision

Viewing changes to src/client/default_connection_configuration.cpp

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2014-01-08 02:04:38 UTC
  • mto: This revision was merged to the branch mainline in revision 58.
  • Revision ID: package-import@ubuntu.com-20140108020438-e1npu0pm7qdv5wc4
Tags: upstream-0.1.3+14.04.20140108
ImportĀ upstreamĀ versionĀ 0.1.3+14.04.20140108

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
{
47
47
}
48
48
 
49
 
std::shared_ptr<mcl::SurfaceMap>
 
49
std::shared_ptr<mcl::ConnectionSurfaceMap>
50
50
mcl::DefaultConnectionConfiguration::the_surface_map()
51
51
{
52
52
    return surface_map([]
128
128
        {
129
129
            auto val_raw = getenv("MIR_CLIENT_INPUT_RECEIVER_REPORT");
130
130
            std::string const val{val_raw ? val_raw : off_opt_val};
131
 
            
 
131
 
132
132
            if (val == log_opt_val)
133
133
                return std::make_shared<mcl::logging::InputReceiverReport>(the_logger());
134
134
            else