diff options
author | Timothy Pearson <[email protected]> | 2014-10-23 00:25:13 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-23 00:25:13 -0500 |
commit | 811ae813e6ef5916707e5dbb62c0aa1f66f8eb01 (patch) | |
tree | e79031becf68573df97e01a863c8a7c7e405a415 | |
parent | ee95d6bfc31745a779b74293101c85f38f6ac75d (diff) | |
download | kipi-plugins-811ae813e6ef5916707e5dbb62c0aa1f66f8eb01.tar.gz kipi-plugins-811ae813e6ef5916707e5dbb62c0aa1f66f8eb01.zip |
Fix FTBFS due to accidental double quote duplication
-rw-r--r-- | kipi-plugins/calendar/monthwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kipi-plugins/calendar/monthwidget.cpp b/kipi-plugins/calendar/monthwidget.cpp index 7d6dcd6..fd5181a 100644 --- a/kipi-plugins/calendar/monthwidget.cpp +++ b/kipi-plugins/calendar/monthwidget.cpp @@ -126,7 +126,7 @@ void MonthWidget::setImage( const KURL &url ) CalSettings::instance()->setImage(month_, imagePath_); TDEIconLoader* iconLoader = TDEApplication::kApplication()->iconLoader(); - TQPixmap pix = iconLoader->loadIcon(""image-x-generic", TDEIcon::NoGroup, 64 ); + TQPixmap pix = iconLoader->loadIcon("image-x-generic", TDEIcon::NoGroup, 64 ); if ( pixmap_ ) delete pixmap_; pixmap_ = new TQPixmap( pix ); |