From 68d5287acb9c257ceb572da72a42168b0787250a Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Sat, 8 Jun 2019 18:25:12 -0700 Subject: [PATCH] fixup linux build --- src/frontend/xwindows/keyboard.rs | 1 + src/frontend/xwindows/x11loop.rs | 2 +- src/frontend/xwindows/xwin.rs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/frontend/xwindows/keyboard.rs b/src/frontend/xwindows/keyboard.rs index 101af7c89..3be66d09d 100644 --- a/src/frontend/xwindows/keyboard.rs +++ b/src/frontend/xwindows/keyboard.rs @@ -3,6 +3,7 @@ use super::Error; use super::{KeyCode, KeyModifiers}; use failure::{ensure, format_err}; use libc; +use log::debug; use std::cell::RefCell; use std::ffi::CStr; use xkb::compose::Status as ComposeStatus; diff --git a/src/frontend/xwindows/x11loop.rs b/src/frontend/xwindows/x11loop.rs index ecc10c253..6fd1b3836 100644 --- a/src/frontend/xwindows/x11loop.rs +++ b/src/frontend/xwindows/x11loop.rs @@ -1,5 +1,5 @@ use crate::config::Config; -use crate::font::{FontConfiguration, FontSystemSelection}; +use crate::font::FontConfiguration; use crate::frontend::guicommon::window::TerminalWindow; use crate::frontend::xwindows::xwin::X11TerminalWindow; use crate::frontend::xwindows::Connection; diff --git a/src/frontend/xwindows/xwin.rs b/src/frontend/xwindows/xwin.rs index 0b0d5c979..c13685846 100644 --- a/src/frontend/xwindows/xwin.rs +++ b/src/frontend/xwindows/xwin.rs @@ -5,7 +5,7 @@ use crate::font::FontConfiguration; use crate::frontend::guicommon::host::{HostHelper, HostImpl, TabHost}; use crate::frontend::guicommon::window::{Dimensions, TerminalWindow}; use crate::frontend::xwindows::x11loop::{GuiEventLoop, WindowId as X11WindowId}; -use crate::mux::tab::{Tab, TabId}; +use crate::mux::tab::Tab; use crate::mux::window::WindowId; use crate::mux::{Mux, SessionTerminated}; use crate::opengl::render::Renderer;