diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
commit | 4534f9640455cf40673613c93d9c10645c1cbc02 (patch) | |
tree | 09132fe734f8c252d39999dd4a743f54bc44c67d /src/gvcore/qxcfi.h | |
parent | 669fa3be411886f1e78a4528a1c8567fe94594ba (diff) | |
download | gwenview-4534f9640455cf40673613c93d9c10645c1cbc02.tar.gz gwenview-4534f9640455cf40673613c93d9c10645c1cbc02.zip |
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...]
tqinvalidate[...]
tqparent[...]
tqmask[...]
tqlayout[...]
tqalignment[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gwenview@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 |