summaryrefslogtreecommitdiff
path: root/Util.cs
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2005-05-16 00:31:10 +0000
committerIan C <ianc@noddybox.co.uk>2005-05-16 00:31:10 +0000
commit81ed3c21ad7624a383a721c9509f671bd6f5ac23 (patch)
treec48b8ba96b7a5d1603726af01107fe58519bfc73 /Util.cs
parent319948b096029194a0dc27d5319794433f487a7b (diff)
Added adjustements and drop shadow
Diffstat (limited to 'Util.cs')
-rw-r--r--Util.cs11
1 files changed, 3 insertions, 8 deletions
diff --git a/Util.cs b/Util.cs
index f7b3bab..c7a6b0e 100644
--- a/Util.cs
+++ b/Util.cs
@@ -31,26 +31,21 @@ namespace BitmapFontEd
{
public static bool YesNo(string s)
{
- return MessageBox.Show(s,"Question",
+ return MessageBox.Show(s,"Bitmap Font Editor",
MessageBoxButtons.YesNo,
MessageBoxIcon.Question)==DialogResult.Yes;
}
public static void Message(string s)
{
- MessageBox.Show(s,"Message",MessageBoxButtons.OK,MessageBoxIcon.Information);
+ MessageBox.Show(s,"Bitmap Font Editor",MessageBoxButtons.OK,MessageBoxIcon.Information);
}
public static void Error(string s)
{
- MessageBox.Show(s,"ERROR",MessageBoxButtons.OK,MessageBoxIcon.Error);
+ MessageBox.Show(s,"Bitmap Font Editor - ERROR",MessageBoxButtons.OK,MessageBoxIcon.Error);
}
- public static void Error(string file, string s)
- {
- MessageBox.Show(file+"\n\n"+s,"File Error",MessageBoxButtons.OK,MessageBoxIcon.Error);
- }
-
public static void About()
{
MessageBox.Show(m_about,"About Bitmap Font Editor",