diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2015-03-05 05:03:32 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2015-03-05 05:03:32 +0100 |
commit | f9f32cc93e35d51abba0fb9f26afc211c60a5ea4 (patch) | |
tree | df566426539627ac453c084e8dccba09afdb64b8 /kexi/main | |
parent | 98a0195cc514bc04129ef9420f1bfbc971770895 (diff) | |
download | koffice-f9f32cc93e35d51abba0fb9f26afc211c60a5ea4.tar.gz koffice-f9f32cc93e35d51abba0fb9f26afc211c60a5ea4.zip |
Fix incorrectly renamed strings
Diffstat (limited to 'kexi/main')
-rw-r--r-- | kexi/main/ksplitter.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kexi/main/ksplitter.h b/kexi/main/ksplitter.h index 76194d13..630b0307 100644 --- a/kexi/main/ksplitter.h +++ b/kexi/main/ksplitter.h @@ -47,13 +47,13 @@ class KDockWidget; class KDockSplitter : public TQWidget { //Q_OBJECT - + public: /** * Constructor. * @param parent parent widget * @param name name - * @param orient orientation. Either @pQt::Vertical or @pQt::Horizontal + * @param orient orientation. Either @p Qt::Vertical or @p Qt::Horizontal * @param pos procentual position of the splitter. Must be int [0...100]. */ KDockSplitter(TQWidget *parent= 0, const char *name= 0, Qt::Orientation orient=Qt::Vertical, int pos= 50); @@ -77,7 +77,7 @@ public: * Return the separator position in percent (%), so the range is [0..100] * @return separator position in percent */ - int separatorPosInPercent() + int separatorPosInPercent() #if KDE_IS_VERSION(3,4,89) ; #else @@ -169,7 +169,7 @@ public: void restoreFromForcedFixedSize(KDockWidget *dw); /** - * The orientation is either @pQt::Horizontal or @pQt::Vertical. + * The orientation is either @p Qt::Horizontal or @p Qt::Vertical. */ Qt::Orientation orientation(){return m_orientation;} @@ -235,7 +235,7 @@ private: TQFrame* divider; /** * @p xpos and @p savedXPos represent the current divider position. - * If the orientation isQt::Horizontal @p xpos actually is "ypos". So + * If the orientation is Qt::Horizontal @p xpos actually is "ypos". So * do not get confused only because of the 'x'. * * xpos and savedXPos are internally high resolution. So *not* 0..100% |