]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/afm.cc
release: 1.2.13
[lilypond.git] / lily / afm.cc
index 8ba8b9703fe66b26fbc702924bd9237ee87eaa00..e35c6f669ed11772f2f0aacabcc0f4015a0d87c8 100644 (file)
@@ -126,7 +126,7 @@ Adobe_font_metric::find_char (String nm, bool warn) const
     {
       if (warn)
        {
-         warning (_f ("can't find character called `%s'", nm.ch_C()));
+         warning (_f ("Can't find character called: `%s'", nm.ch_C()));
        }
       return dummy_static_char_metric;
     }
@@ -135,7 +135,7 @@ Adobe_font_metric::find_char (String nm, bool warn) const
 }
 
 
-Character_metric *
+Character_metric const *
 Adobe_font_metric::get_char (int code, bool warn) const
 {
   return &find_ascii (code,warn);
@@ -151,7 +151,7 @@ Adobe_font_metric::find_ascii (int a , bool warn) const
     }
   else if (warn )
     {
-      warning (_f ("can't find character number %d", a));
+      warning (_f ("Can't find character number: %d", a));
     }
   return dummy_static_char_metric;
 }