diff options
Diffstat (limited to 'lib/kotext/KoBorder.cpp')
-rw-r--r-- | lib/kotext/KoBorder.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/kotext/KoBorder.cpp b/lib/kotext/KoBorder.cpp index 5c7461e6..b1d04f1b 100644 --- a/lib/kotext/KoBorder.cpp +++ b/lib/kotext/KoBorder.cpp @@ -27,16 +27,16 @@ #include <float.h> static const struct BorderStyle { - Qt::PenStyle penStyle; + TQt::PenStyle penStyle; TQCString oasisName; TQCString uiStringStyle; } s_borderStyles[] = { - { Qt::SolidLine, "solid", "_________" }, // SOLID - { Qt::DashLine, "dashed", "___ ___ __" }, // DASH - { Qt::DotLine, "dotted", "_ _ _ _ _ _" }, // DOT - { Qt::DashDotLine, "dot-dash", "___ _ ___ _" }, // DASH_DOT - { Qt::DashDotDotLine, "dot-dot-dash", "___ _ _ ___" }, // DASH_DOT_DOT - { Qt::SolidLine, "double", "===========" } // DOUBLE_LINE + { TQt::SolidLine, "solid", "_________" }, // SOLID + { TQt::DashLine, "dashed", "___ ___ __" }, // DASH + { TQt::DotLine, "dotted", "_ _ _ _ _ _" }, // DOT + { TQt::DashDotLine, "dot-dash", "___ _ ___ _" }, // DASH_DOT + { TQt::DashDotDotLine, "dot-dot-dash", "___ _ _ ___" }, // DASH_DOT_DOT + { TQt::SolidLine, "double", "===========" } // DOUBLE_LINE }; KoBorder::KoBorder() |