summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-23 00:25:13 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-23 00:25:13 -0500
commit811ae813e6ef5916707e5dbb62c0aa1f66f8eb01 (patch)
treee79031becf68573df97e01a863c8a7c7e405a415
parentee95d6bfc31745a779b74293101c85f38f6ac75d (diff)
downloadkipi-plugins-811ae813.tar.gz
kipi-plugins-811ae813.zip
Fix FTBFS due to accidental double quote duplication
-rw-r--r--kipi-plugins/calendar/monthwidget.cpp2
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 );