diff dwt/internal/image/JPEGFrameHeader.d @ 48:9a64a7781bab

Added override and alias, first chunk. Thanks torhu for doing this patch.
author Frank Benoit <benoit@tionex.de>
date Sun, 03 Feb 2008 01:14:54 +0100
parents 92c102dd64a3
children 36f5cb12e1a2
line wrap: on
line diff
--- a/dwt/internal/image/JPEGFrameHeader.d	Sun Feb 03 00:59:28 2008 +0100
+++ b/dwt/internal/image/JPEGFrameHeader.d	Sun Feb 03 01:14:54 2008 +0100
@@ -198,7 +198,7 @@
      *  SOF_14 - Differential progressive, arithmetic coding
      *  SOF_15 - Differential lossless, arithmetic coding
      */
-    public bool verify() {
+    override public bool verify() {
         int marker = getSegmentMarker();
         return (marker >= JPEGFileFormat.SOF0 && marker <= JPEGFileFormat.SOF3) ||
             (marker >= JPEGFileFormat.SOF5 && marker <= JPEGFileFormat.SOF7) ||