Make further progress on sending to MarsEdit and Micro.blog.

This commit is contained in:
Brent Simmons
2018-01-09 22:04:45 -08:00
parent ccc699741d
commit f324e65f16
3 changed files with 48 additions and 8 deletions

View File

@@ -10,12 +10,12 @@ import Foundation
final class SendToMarsEditCommand: SendToCommand {
func canSendObject(_ object: Any?) -> Bool {
func canSendObject(_ object: Any?, selectedText: String?) -> Bool {
return false
}
func sendObject(_ object: Any?) {
func sendObject(_ object: Any?, selectedText: String?) {
}
}