Added error message for Other platform (same as Win XP at the time).

This commit is contained in:
Lorenz Cuno Klopfenstein 2010-07-01 13:19:45 +02:00
parent 3673ba6a17
commit ba1b2f9cb6

View file

@ -1,12 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
namespace OnTopReplica.Platforms {
class Other : PlatformSupport {
public override bool CheckCompatibility() {
//TODO: Err MSG
//TODO: better error message
MessageBox.Show(Strings.ErrorNoDwm, Strings.ErrorNoDwmTitle, MessageBoxButtons.OK, MessageBoxIcon.Error);
return false;
}