summaryrefslogtreecommitdiffstats
path: root/krecipes/src/importers/recipemlimporter.h
diff options
context:
space:
mode:
Diffstat (limited to 'krecipes/src/importers/recipemlimporter.h')
-rw-r--r--krecipes/src/importers/recipemlimporter.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/krecipes/src/importers/recipemlimporter.h b/krecipes/src/importers/recipemlimporter.h
index b330a05..bd1a7c7 100644
--- a/krecipes/src/importers/recipemlimporter.h
+++ b/krecipes/src/importers/recipemlimporter.h
@@ -19,7 +19,7 @@
#include "datablocks/ingredient.h"
#include "datablocks/recipe.h"
-#include <qdom.h>
+#include <ntqdom.h>
/** Class to import the RecipeML, XML-based file format.
* More info at http://www.formatdata.com/recipeml
@@ -33,19 +33,19 @@ public:
virtual ~RecipeMLImporter();
protected:
- void parseFile( const QString& filename );
+ void parseFile( const TQString& filename );
private:
- void readRecipemlDirections( const QDomElement& dirs );
- void readRecipemlHead( const QDomElement& head );
- void readRecipemlIng( const QDomElement& ing1, Ingredient *ing2 = 0, const QString &header = QString::null );
- void readRecipemlIngs( const QDomElement& ings );
- void readRecipemlMenu( const QDomElement& menu );
- void readRecipemlSrcItems( const QDomElement& sources );
- void readRecipemlRecipe( const QDomElement& recipe );
- void readRecipemlPreptime( const QDomElement &preptime );
- void readRecipemlQty( const QDomElement &qty, Ingredient &ing );
- void readRecipemlRange( const QDomElement& range1, double &range2, double &range_offset );
+ void readRecipemlDirections( const TQDomElement& dirs );
+ void readRecipemlHead( const TQDomElement& head );
+ void readRecipemlIng( const TQDomElement& ing1, Ingredient *ing2 = 0, const TQString &header = TQString::null );
+ void readRecipemlIngs( const TQDomElement& ings );
+ void readRecipemlMenu( const TQDomElement& menu );
+ void readRecipemlSrcItems( const TQDomElement& sources );
+ void readRecipemlRecipe( const TQDomElement& recipe );
+ void readRecipemlPreptime( const TQDomElement &preptime );
+ void readRecipemlTQty( const TQDomElement &qty, Ingredient &ing );
+ void readRecipemlRange( const TQDomElement& range1, double &range2, double &range_offset );
Recipe recipe;
};