diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2009-10-20 00:33:06 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-10-20 00:33:06 (GMT) |
commit | 074bcbc746ab3f8669634ff00af0250b592baa48 (patch) | |
tree | 431ec8b75bbf4dd81bbef940f8ba3f4d3a325c2d /src/declarative/extra | |
parent | 6e3639cd4751b957f12bcc3224f1a8c4d15d036c (diff) | |
download | Qt-074bcbc746ab3f8669634ff00af0250b592baa48.zip Qt-074bcbc746ab3f8669634ff00af0250b592baa48.tar.gz Qt-074bcbc746ab3f8669634ff00af0250b592baa48.tar.bz2 |
doc
Record current DB type in INI for future extensibility.
Diffstat (limited to 'src/declarative/extra')
-rw-r--r-- | src/declarative/extra/qmlfontloader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/extra/qmlfontloader.cpp b/src/declarative/extra/qmlfontloader.cpp index 4a447de..2193b68 100644 --- a/src/declarative/extra/qmlfontloader.cpp +++ b/src/declarative/extra/qmlfontloader.cpp @@ -75,13 +75,13 @@ QML_DEFINE_TYPE(Qt,4,6,(QT_VERSION&0x00ff00)>>8,FontLoader,QmlFontLoader) \brief This item allows using fonts by name or url. Example: - \code + \qml FontLoader { id: FixedFont; name: "Courier" } FontLoader { id: WebFont; source: "http://www.mysite.com/myfont.ttf" } Text { text: "Fixed-size font"; font.family: FixedFont.name } Text { text: "Fancy font"; font.family: WebFont.name } - \endcode + \endqml */ QmlFontLoader::QmlFontLoader(QObject *parent) : QObject(*(new QmlFontLoaderPrivate), parent) |