summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/rawconverter
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commit94ec53c96c3d5dc4a427e7dc4bbaa863add5cfa4 (patch)
tree0425f63afbe46c26d58a6bbcf8a7e6d026a1bb7e /kipi-plugins/rawconverter
parentf899c4c05f6b7578b8317ae8a1f71801e8d4b5d0 (diff)
downloadkipi-plugins-94ec53c96c3d5dc4a427e7dc4bbaa863add5cfa4.tar.gz
kipi-plugins-94ec53c96c3d5dc4a427e7dc4bbaa863add5cfa4.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/libraries/kipi-plugins@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kipi-plugins/rawconverter')
-rw-r--r--kipi-plugins/rawconverter/batchdialog.cpp6
-rw-r--r--kipi-plugins/rawconverter/iccjpeg.c2
-rw-r--r--kipi-plugins/rawconverter/plugin_rawconverter.cpp2
-rw-r--r--kipi-plugins/rawconverter/rawdecodingiface.cpp4
4 files changed, 7 insertions, 7 deletions
diff --git a/kipi-plugins/rawconverter/batchdialog.cpp b/kipi-plugins/rawconverter/batchdialog.cpp
index 06b30cd..c0a61fe 100644
--- a/kipi-plugins/rawconverter/batchdialog.cpp
+++ b/kipi-plugins/rawconverter/batchdialog.cpp
@@ -392,7 +392,7 @@ void BatchDialog::addItems(const TQStringList& itemList)
it != itemList.end(); ++it)
{
TQFileInfo fi(*it);
- if (fi.exists() && !m_itemDict.tqfind(fi.fileName()))
+ if (fi.exists() && !m_itemDict.find(fi.fileName()))
{
RawItem *item = new RawItem;
item->directory = fi.dirPath();
@@ -497,7 +497,7 @@ void BatchDialog::slotConvertBlinkTimerDone()
void BatchDialog::processing(const TQString& file)
{
TQString filename = TQFileInfo(file).fileName();
- m_currentConvertItem = m_itemDict.tqfind(filename);
+ m_currentConvertItem = m_itemDict.find(filename);
if (m_currentConvertItem)
{
m_listView->setSelected(m_currentConvertItem->viewItem, true);
@@ -627,7 +627,7 @@ void BatchDialog::customEvent(TQCustomEvent *event)
case(IDENTIFY):
{
TQFileInfo fi(d->filePath);
- RawItem *rawItem = m_itemDict.tqfind(fi.fileName());
+ RawItem *rawItem = m_itemDict.find(fi.fileName());
if (rawItem)
{
if (!d->image.isNull())
diff --git a/kipi-plugins/rawconverter/iccjpeg.c b/kipi-plugins/rawconverter/iccjpeg.c
index dc57124..e74a98d 100644
--- a/kipi-plugins/rawconverter/iccjpeg.c
+++ b/kipi-plugins/rawconverter/iccjpeg.c
@@ -133,7 +133,7 @@ write_icc_profile (j_compress_ptr cinfo,
void
setup_read_icc_profile (j_decompress_ptr cinfo)
{
- /* Tell the library to keep any APP2 data it may tqfind */
+ /* Tell the library to keep any APP2 data it may find */
jpeg_save_markers(cinfo, ICC_MARKER, 0xFFFF);
}
diff --git a/kipi-plugins/rawconverter/plugin_rawconverter.cpp b/kipi-plugins/rawconverter/plugin_rawconverter.cpp
index 1135d93..18ec120 100644
--- a/kipi-plugins/rawconverter/plugin_rawconverter.cpp
+++ b/kipi-plugins/rawconverter/plugin_rawconverter.cpp
@@ -128,7 +128,7 @@ bool Plugin_RawConverter::isRAWFile(const TQString& filePath)
#endif
TQFileInfo fileInfo(filePath);
- if (rawFilesExt.upper().tqcontains( fileInfo.extension(false).upper() ))
+ if (rawFilesExt.upper().contains( fileInfo.extension(false).upper() ))
return true;
return false;
diff --git a/kipi-plugins/rawconverter/rawdecodingiface.cpp b/kipi-plugins/rawconverter/rawdecodingiface.cpp
index 70aff48..2da4272 100644
--- a/kipi-plugins/rawconverter/rawdecodingiface.cpp
+++ b/kipi-plugins/rawconverter/rawdecodingiface.cpp
@@ -303,7 +303,7 @@ bool RawDecodingIface::loadedFromDcraw(const TQString& filePath,
}
TQString libpngver(PNG_HEADER_VERSION_STRING);
- libpngver.tqreplace('\n', ' ');
+ libpngver.replace('\n', ' ');
soft.append(TQString(" (%1)").tqarg(libpngver));
png_text text;
text.key = "Software";
@@ -383,7 +383,7 @@ bool RawDecodingIface::loadedFromDcraw(const TQString& filePath,
#endif
TQString libtiffver(TIFFLIB_VERSION_STR);
- libtiffver.tqreplace('\n', ' ');
+ libtiffver.replace('\n', ' ');
soft.append(TQString(" ( %1 )").tqarg(libtiffver));
TIFFSetField(tif, TIFFTAG_SOFTWARE, (const char*)soft.ascii());