summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KFileItem.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KFileItem.java')
-rw-r--r--kdejava/koala/org/kde/koala/KFileItem.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/kdejava/koala/org/kde/koala/KFileItem.java b/kdejava/koala/org/kde/koala/KFileItem.java
index 09da9800..dd729fed 100644
--- a/kdejava/koala/org/kde/koala/KFileItem.java
+++ b/kdejava/koala/org/kde/koala/KFileItem.java
@@ -3,7 +3,7 @@ package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
-import org.kde.qt.QPixmap;
+import org.kde.qt.TQPixmap;
/**
@@ -357,8 +357,8 @@ public class KFileItem implements QtSupport {
@short Returns a pixmap representing the file.
*/
- public native QPixmap pixmap(int _size, int _state);
- public native QPixmap pixmap(int _size);
+ public native TQPixmap pixmap(int _size, int _state);
+ public native TQPixmap pixmap(int _size);
/**
Returns the overlays (bitfield of KIcon.Overlay flags) that are used
for this item's pixmap. Overlays are used to show for example, whether
@@ -445,7 +445,7 @@ public class KFileItem implements QtSupport {
That way a KFileItem can hold and provide access to all those views
separately.
I.e. a KFileIconView that associates a KFileIconViewItem (an item suitable
- for use with QIconView) does
+ for use with TQIconView) does
<pre>
kfileItem.setExtraData( this, iconViewItem );
</pre>
@@ -454,7 +454,7 @@ public class KFileItem implements QtSupport {
KFileIconViewItem iconViewItem = (KFileIconViewItem)( kfileItem.extraData( this ));
</pre>
This is usually more efficient then having every view associate data to
- items by using a separate QDict or QMap.
+ items by using a separate TQDict or TQMap.
Note: you have to remove and destroy the data you associated yourself
when you don't need it anymore!
@param key the key of the extra data