summaryrefslogtreecommitdiffstats
path: root/ue2/imgsynth2/cpixelformat_indexed8.h
diff options
context:
space:
mode:
Diffstat (limited to 'ue2/imgsynth2/cpixelformat_indexed8.h')
-rw-r--r--ue2/imgsynth2/cpixelformat_indexed8.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/ue2/imgsynth2/cpixelformat_indexed8.h b/ue2/imgsynth2/cpixelformat_indexed8.h
index 331d423..ac18b87 100644
--- a/ue2/imgsynth2/cpixelformat_indexed8.h
+++ b/ue2/imgsynth2/cpixelformat_indexed8.h
@@ -10,7 +10,6 @@
10 10
11#include <fstream> 11#include <fstream>
12#include "cpixelformat.h" 12#include "cpixelformat.h"
13#include "cpixmap.h"
14 13
15/** 14/**
16 * @class CPixelFormat_Indexed8 15 * @class CPixelFormat_Indexed8
@@ -24,14 +23,14 @@ class CPixelFormat_Indexed8 : public CPixelFormat
24 /** 23 /**
25 * @method CPixelFormat_Indexed8 24 * @method CPixelFormat_Indexed8
26 * @brief Default ctor 25 * @brief Default ctor
27 * @param pixmap pointer to CPixmap instance 26 * @param bitmap pointer to CBitmap instance
28 * @return - 27 * @return -
29 * @globalvars none 28 * @globalvars none
30 * @exception none 29 * @exception none
31 * @conditions none 30 * @conditions none
32 */ 31 */
33 CPixelFormat_Indexed8(CPixmap *pixmap) 32 CPixelFormat_Indexed8(CBitmap *bitmap)
34 : CPixelFormat(pixmap) 33 : CPixelFormat(bitmap)
35 {} 34 {}
36 35
37 /** 36 /**