summaryrefslogtreecommitdiffstats
path: root/krecipes/src/exporters/cookmlexporter.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2019-01-03 14:18:28 +0100
committerSlávek Banko <slavek.banko@axis.cz>2019-01-03 14:18:28 +0100
commit963ae7f056aa3f2c4f97964a2efd1f062b6eea7a (patch)
treef442b4ca5f1c7b830e2fcb15a17740c9e828b033 /krecipes/src/exporters/cookmlexporter.cpp
parent4ba689cffaff5068ab914864bd1106ae60728dbf (diff)
downloadkrecipes-963ae7f0.tar.gz
krecipes-963ae7f0.zip
Fix empty translation.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'krecipes/src/exporters/cookmlexporter.cpp')
-rw-r--r--krecipes/src/exporters/cookmlexporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/krecipes/src/exporters/cookmlexporter.cpp b/krecipes/src/exporters/cookmlexporter.cpp
index c744946..f33adf5 100644
--- a/krecipes/src/exporters/cookmlexporter.cpp
+++ b/krecipes/src/exporters/cookmlexporter.cpp
@@ -68,7 +68,7 @@ TQString CookMLExporter::createContent( const RecipeList& recipes )
head_tag.setAttribute( "title", ( *recipe_it ).title );
head_tag.setAttribute( "servingqty", ( *recipe_it ).yield.amount );
head_tag.setAttribute( "servingtype", ( *recipe_it ).yield.type );
- head_tag.setAttribute( "rid", i18n( "" ) ); //FIXME:what's this...recipe ID??
+ head_tag.setAttribute( "rid", "" ); //FIXME:what's this...recipe ID??
recipe_tag.appendChild( head_tag );
for ( ElementList::const_iterator cat_it = ( *recipe_it ).categoryList.begin(); cat_it != ( *recipe_it ).categoryList.end(); ++cat_it ) {