diff options
author | Timothy Pearson <[email protected]> | 2014-10-23 00:25:12 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-23 00:25:12 -0500 |
commit | d792ddf6da4b60a6d22f64efc1c80ee5c9e7e41f (patch) | |
tree | 5349e8b69c5eef1fbb4c135f6447b8d12e8b32c3 | |
parent | c3f883a053207f48f3a2bed084159626a52038cb (diff) | |
download | kmymoney-d792ddf6da4b60a6d22f64efc1c80ee5c9e7e41f.tar.gz kmymoney-d792ddf6da4b60a6d22f64efc1c80ee5c9e7e41f.zip |
Fix FTBFS due to accidental double quote duplication
-rw-r--r-- | kmymoney2/views/kgloballedgerview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kmymoney2/views/kgloballedgerview.cpp b/kmymoney2/views/kgloballedgerview.cpp index 5e7029c..5271ee4 100644 --- a/kmymoney2/views/kgloballedgerview.cpp +++ b/kmymoney2/views/kgloballedgerview.cpp @@ -171,7 +171,7 @@ TDEGlobalLedgerView::TDEGlobalLedgerView(TQWidget *parent, const char *name ) // I leave the code commented here for a while, so that I see // how I can add other widgets at this point TDEIconLoader *il = TDEGlobal::iconLoader(); - m_toolbar->insertButton(il->loadIcon(""text-x-generic", TDEIcon::Small, TDEIcon::SizeSmall), + m_toolbar->insertButton(il->loadIcon("text-x-generic", TDEIcon::Small, TDEIcon::SizeSmall), 1,true,i18n("Account")); //m_toolbar->setMaximumSize(50,20); m_toolbar->alignItemRight(1); |