diff options
Diffstat (limited to 'kde2')
-rw-r--r-- | kde2/klipsi/toplevel.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/kde2/klipsi/toplevel.cpp b/kde2/klipsi/toplevel.cpp index 1a7d4dd..1de43b7 100644 --- a/kde2/klipsi/toplevel.cpp +++ b/kde2/klipsi/toplevel.cpp @@ -554,6 +554,18 @@ checkConnection() { rf = rff->create(true); if (rf) { + if (rf->getProtocolVersion() == 3) { + closeConnection(); + delete timer; + timer = NULL; + KMessageBox::error(NULL, i18n( + "<QT>Your Psion is reported to be a <B>Series 3</B> " + "machine. This type of machine does <B>not support</B> the " + "remote clipboard protocol; Sorry.<BR/>" + "<B>Klipsi</B> will now terminate.</QT>"), + i18n("Protocol not supported")); + return false; + } if (!rc) { rc = new rclip(rclipSocket); Enum<rfsv::errs> ret; |