We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The methods have different signatures on MacOS:
#[cfg(not(target_os = "macos"))] fn set_clipboard(&mut self, text: String) { mq::window::clipboard_set(&text); } #[cfg(not(target_os = "macos"))] fn get_clipboard(&mut self) -> Option<String> { mq::window::clipboard_get() } #[cfg(target_os = "macos")] fn set_clipboard(&mut self, _mq_ctx: &mut mq::Context, text: String) {...} #[cfg(target_os = "macos")] fn get_clipboard(&mut self, _mq_ctx: &mut mq::Context) -> Option<String> {...}
but their calls only use the non-macos signature.
As the _mq_ctx argument is no longer used, can it be removed please?
_mq_ctx
The text was updated successfully, but these errors were encountered:
sure, feel free to send a PR!
Sorry, something went wrong.
Oh, sure. Sorry, had a brain freeze. I couldn't fix the previous version I tried. #67
#66 - compile on MacOS.
9cd86b6
Successfully merging a pull request may close this issue.
The methods have different signatures on MacOS:
but their calls only use the non-macos signature.
As the
_mq_ctx
argument is no longer used, can it be removed please?The text was updated successfully, but these errors were encountered: