diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-08-10 12:13:27 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-08-10 12:13:27 -0500 |
commit | d296f1d337dabfeae5191955fdadb874965dbbe9 (patch) | |
tree | 1a4b3b4cca01f2ea77eee2497297219d60e9bbd4 /tqtinterface/qt4/src/kernel/tqclipboard.cpp | |
parent | eaa7ee2e0bbca40ba3173c4304f81957e8964291 (diff) | |
download | experimental-d296f1d337dabfeae5191955fdadb874965dbbe9.tar.gz experimental-d296f1d337dabfeae5191955fdadb874965dbbe9.zip |
rename the following methods:
tqparent parent
tqmask mask
Diffstat (limited to 'tqtinterface/qt4/src/kernel/tqclipboard.cpp')
-rw-r--r-- | tqtinterface/qt4/src/kernel/tqclipboard.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tqtinterface/qt4/src/kernel/tqclipboard.cpp b/tqtinterface/qt4/src/kernel/tqclipboard.cpp index 4c2b341..045e1f6 100644 --- a/tqtinterface/qt4/src/kernel/tqclipboard.cpp +++ b/tqtinterface/qt4/src/kernel/tqclipboard.cpp @@ -336,8 +336,8 @@ void TQClipboard::setData(QMimeSource *source, Mode mode) more than one object to represent it is almost certainly an error. */ -TQClipboard::TQClipboard( TQObject *tqparent, const char *name ) - : TQObject( tqparent, name ) +TQClipboard::TQClipboard( TQObject *parent, const char *name ) + : TQObject( parent, name ) { // nothing } @@ -583,7 +583,7 @@ void TQClipboard::setImage( const TQImage &image ) contain a pixmap. Note that this can lose information. For example, if the image is 24-bit and the display is 8-bit, the result is converted to 8 bits, and if the image has an alpha - channel, the result just has a tqmask. + channel, the result just has a mask. The \a mode argument is used to control which part of the system clipboard is used. If \a mode is TQClipboard::Clipboard, the @@ -695,7 +695,7 @@ TQMimeSource *TQClipboard::data() const The TQDragObject subclasses are reasonable objects to put into the clipboard (but do not try to call TQDragObject::drag() on the same object). Any TQDragObject placed in the clipboard should have a - tqparent of 0. Do not put TQDragMoveEvent or TQDropEvent subclasses in + parent of 0. Do not put TQDragMoveEvent or TQDropEvent subclasses in the clipboard, as they do not belong to the event handler which receives them. |