From kde-commits Sun Nov 30 22:54:29 2003 From: Jason Kivlighn Date: Sun, 30 Nov 2003 22:54:29 +0000 To: kde-commits Subject: kdenonbeta/krecipes/src/importers X-MARC-Message: https://marc.info/?l=kde-commits&m=107023314109173 CVS commit by jkivlighn: Fix a typo... "=" was used instead of "==" M +1 -1 recipemlimporter.cpp 1.6 --- kdenonbeta/krecipes/src/importers/recipemlimporter.cpp #1.5:1.6 @@ -236,5 +236,5 @@ void RecipeMLImporter::readRecipemlDirec QDomElement el = l.item(i).toElement(); - if (el.tagName()="step") + if (el.tagName()=="step") directions.append(el.text().stripWhiteSpace()); else