summaryrefslogtreecommitdiffstats
path: root/korganizer/koeditorattachments.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korganizer/koeditorattachments.cpp')
-rw-r--r--korganizer/koeditorattachments.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/korganizer/koeditorattachments.cpp b/korganizer/koeditorattachments.cpp
index 669fd636..6bf22137 100644
--- a/korganizer/koeditorattachments.cpp
+++ b/korganizer/koeditorattachments.cpp
@@ -562,7 +562,7 @@ void KOEditorAttachments::handlePasteOrDrop( TQMimeSource* source )
TQMap<TQString,TQString> metadata;
if ( KURLDrag::decode( source, urls, metadata ) ) {
probablyWeHaveUris = true;
- labels = TQStringList::split( ':', metadata["labels"], FALSE );
+ labels = TQStringList::split( ':', metadata["labels"], false );
for ( TQStringList::Iterator it = labels.begin(); it != labels.end(); ++it ) {
*it = KURL::decode_string( (*it).latin1() );
}
@@ -571,7 +571,7 @@ void KOEditorAttachments::handlePasteOrDrop( TQMimeSource* source )
} else if ( TQTextDrag::canDecode( source ) ) {
TQString text;
TQTextDrag::decode( source, text );
- TQStringList lst = TQStringList::split( '\n', text, FALSE );
+ TQStringList lst = TQStringList::split( '\n', text, false );
for ( TQStringList::ConstIterator it = lst.constBegin(); it != lst.constEnd(); ++it ) {
urls.append( *it );
labels.append( TQString() );