fix warnings
This commit is contained in:
parent
098b6b6eed
commit
b63afbe74c
1 changed files with 3 additions and 1 deletions
|
@ -152,6 +152,8 @@ mod provider {
|
|||
}
|
||||
|
||||
impl NopProvider {
|
||||
#[allow(dead_code)]
|
||||
// Only dead_code on Windows.
|
||||
pub fn new() -> Self {
|
||||
Self {
|
||||
buf: String::new(),
|
||||
|
@ -217,7 +219,7 @@ mod provider {
|
|||
fn set_contents(&mut self, contents: String, clipboard_type: ClipboardType) -> Result<()> {
|
||||
match clipboard_type {
|
||||
ClipboardType::Clipboard => {
|
||||
clipboard_win::set_clipboard(clipboard_win::formats::Unicode, contents);
|
||||
clipboard_win::set_clipboard(clipboard_win::formats::Unicode, contents)?;
|
||||
}
|
||||
ClipboardType::Selection => {}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue