diff --git a/amarok/src/collectiondb.cpp b/amarok/src/collectiondb.cpp index 8b659b07..cbf83b9f 100644 --- a/amarok/src/collectiondb.cpp +++ b/amarok/src/collectiondb.cpp @@ -5471,7 +5471,7 @@ CollectionDB::updateStatsTables() prev = 3; } - if ( prev < 3 ) //it is from before 1.2, or our poor user is otherwise fucked + if ( prev < 3 ) //it is from before 1.2, or our poor user is otherwise affected { debug() << "Rebuilding stats-database!" << endl; dropStatsTableV1(); diff --git a/amarok/src/contextbrowser.cpp b/amarok/src/contextbrowser.cpp index 27bde5c7..570270a1 100644 --- a/amarok/src/contextbrowser.cpp +++ b/amarok/src/contextbrowser.cpp @@ -829,7 +829,7 @@ void ContextBrowser::reloadStyleSheet() ////////////////////////////////////////////////////////////////////////////////////////// //parts of this function from ktabwidget.cpp, copyright (C) 2003 Zack Rusin and Stephan Binner -//fucking setCurrentTab() isn't virtual so we have to override this instead =( +//setCurrentTab() isn't virtual so we have to override this instead =( void ContextBrowser::wheelDelta( int delta ) { if ( count() < 2 || delta == 0 ) diff --git a/amarok/src/osd.cpp b/amarok/src/osd.cpp index 68dc2d32..a798ab47 100644 --- a/amarok/src/osd.cpp +++ b/amarok/src/osd.cpp @@ -834,7 +834,7 @@ Amarok::OSD::show( const MetaBundle &bundle ) //slot if( text.isEmpty() ) text = MetaBundle::prettyTitle( bundle.url().fileName() ).stripWhiteSpace(); - if( text.startsWith( "- " ) ) //When we only have a title tag, _something_ prepends a fucking hyphen. Remove that. + if( text.startsWith( "- " ) ) //When we only have a title tag, _something_ prepends a hyphen. Remove that. text = text.mid( 2 ); if( text.isEmpty() ) //still diff --git a/amarok/src/playlistbrowseritem.cpp b/amarok/src/playlistbrowseritem.cpp index 6d4b1f57..f90b4f2a 100644 --- a/amarok/src/playlistbrowseritem.cpp +++ b/amarok/src/playlistbrowseritem.cpp @@ -2352,7 +2352,7 @@ PodcastChannel::showContextMenu( const TQPoint &position ) ///////////////////////////////////////////////////////////////////////////// /// CLASS PodcastEpisode -/// @note we fucking hate itunes for taking over podcasts and inserting +/// @note we hate itunes for taking over podcasts and inserting /// their own attributes. //////////////////////////////////////////////////////////////////////////// PodcastEpisode::PodcastEpisode( TQListViewItem *parent, TQListViewItem *after, diff --git a/amarok/src/playlistloader.h b/amarok/src/playlistloader.h index d110be42..2e905bb5 100644 --- a/amarok/src/playlistloader.h +++ b/amarok/src/playlistloader.h @@ -199,7 +199,7 @@ private slots: void abort() { delete this; } }; -// PRIVATE -- should be in the .cpp, but fucking moc. +// PRIVATE -- should be in the .cpp, but moc. class MyXmlLoader: public MetaBundle::XmlLoader { diff --git a/amarok/src/scripts/lyrics_astraweb/lyrics_astraweb.rb b/amarok/src/scripts/lyrics_astraweb/lyrics_astraweb.rb index c5285950..26131c32 100755 --- a/amarok/src/scripts/lyrics_astraweb/lyrics_astraweb.rb +++ b/amarok/src/scripts/lyrics_astraweb/lyrics_astraweb.rb @@ -75,7 +75,7 @@ end def fetchLyricsByUrl( url ) - # Note: Using telnet here cause the fucking site has a broken cgi script, delivering + # Note: Using telnet here because the site has a broken cgi script, delivering # a broken header, which makes Net::HTTP::get() crap out host = "display.lyrics.astraweb.com" diff --git a/amarok/src/statistics.cpp b/amarok/src/statistics.cpp index b6a74fd1..dc180938 100644 --- a/amarok/src/statistics.cpp +++ b/amarok/src/statistics.cpp @@ -701,7 +701,7 @@ void StatisticsItem::setIcon( const TQString &icon ) { TQString path = kapp->iconLoader()->iconPath( icon, -KIcon::SizeHuge ); - path.replace( "32x32", "48x48" ); //HACK fucking KIconLoader only returns 32x32 max. Why? + path.replace( "32x32", "48x48" ); //HACK: KIconLoader only returns 32x32 max. Why? // debug() << "ICONPATH: " << path << endl; diff --git a/amarok/src/xmlloader.h b/amarok/src/xmlloader.h index 5e9b2061..fc203364 100644 --- a/amarok/src/xmlloader.h +++ b/amarok/src/xmlloader.h @@ -172,7 +172,7 @@ class MetaBundle::XmlLoader: public TQObject, public TQXmlDefaultHandler virtual bool endDocument(); virtual bool fatalError( const TQXmlParseException &exception ); - public: //fucking moc, these should be private + public: //these should be private class ThreadedLoader; class SimpleLoader; };