diff options
Diffstat (limited to 'klipper/historyitem.cpp')
-rw-r--r-- | klipper/historyitem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klipper/historyitem.cpp b/klipper/historyitem.cpp index b217bdb31..3dfc37f17 100644 --- a/klipper/historyitem.cpp +++ b/klipper/historyitem.cpp @@ -53,7 +53,7 @@ HistoryItem* HistoryItem::create( const TQMimeSource& aSource ) if( KURLDrag::decode( &aSource, urls, metaData )) { // this is from KonqDrag (libkonq) TQByteArray a = aSource.tqencodedData( "application/x-kde-cutselection" ); - bool cut = !a.isEmpty() && (a.at(0) == '1'); // true if 1 + bool cut = !a.isEmpty() && (a.tqat(0) == '1'); // true if 1 return new HistoryURLItem( urls, metaData, cut ); } } |