diff options
Diffstat (limited to 'src/gvcore/qxcfi.h')
-rw-r--r-- | src/gvcore/qxcfi.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gvcore/qxcfi.h b/src/gvcore/qxcfi.h index e98f226..be0c3d6 100644 --- a/src/gvcore/qxcfi.h +++ b/src/gvcore/qxcfi.h @@ -130,7 +130,7 @@ class XCFImageFormat : public TQImageFormatPlugin { TQ_INT32 type; //!< Type of the layer (GimpImageType) char* name; //!< Name of the layer TQ_UINT32 hierarchy_offset; //!< File position of Tile hierarchy - TQ_UINT32 tqmask_offset; //!< File position of tqmask image + TQ_UINT32 mask_offset; //!< File position of tqmask image uint nrows; //!< Number of rows of tiles (y direction) uint ncols; //!< Number of columns of tiles (x direction) @@ -139,16 +139,16 @@ class XCFImageFormat : public TQImageFormatPlugin { //! For Grayscale and Indexed images, the alpha channel is stored //! separately (in this data structure, anyway). Tiles alpha_tiles; - Tiles tqmask_tiles; //!< The layer tqmask (optional) + Tiles mask_tiles; //!< The layer tqmask (optional) //! Additional information about a layer tqmask. struct { TQ_UINT32 opacity; TQ_UINT32 visible; - TQ_UINT32 show_tqmasked; + TQ_UINT32 show_masked; uchar red, green, blue; TQ_UINT32 tattoo; - } tqmask_channel; + } mask_channel; bool active; //!< Is this layer the active layer? TQ_UINT32 opacity; //!< The opacity of the layer |