summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/csvcontrol.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/inc/csvcontrol.hxx')
-rw-r--r--sc/source/ui/inc/csvcontrol.hxx20
1 files changed, 0 insertions, 20 deletions
diff --git a/sc/source/ui/inc/csvcontrol.hxx b/sc/source/ui/inc/csvcontrol.hxx
index 3537f629920c..9f5ab5c33587 100644
--- a/sc/source/ui/inc/csvcontrol.hxx
+++ b/sc/source/ui/inc/csvcontrol.hxx
@@ -17,8 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
-
#ifndef _SC_CSVCONTROL_HXX
#define _SC_CSVCONTROL_HXX
@@ -36,8 +34,6 @@ namespace com { namespace sun { namespace star { namespace accessibility {
} } } }
-
-
/** Minimum character count for a column in separators mode. */
const sal_Int32 CSV_MINCOLWIDTH = 8;
/** Maximum length of a cell string. */
@@ -69,8 +65,6 @@ const sal_uInt8 SC_COL_SKIP = 9;
const sal_uInt8 SC_COL_ENGLISH = 10;
-
-
/** Exported data of a column (data used in the dialog). */
struct ScCsvExpData
{
@@ -85,8 +79,6 @@ struct ScCsvExpData
typedef ::std::vector< ScCsvExpData > ScCsvExpDataVec;
-
-
/** Specifies which element should be used to perform an action. */
enum ScMoveMode
{
@@ -100,8 +92,6 @@ enum ScMoveMode
};
-
-
/** Flags for comparison of old and new control layout data. */
typedef sal_uInt32 ScCsvDiff;
@@ -122,8 +112,6 @@ const ScCsvDiff CSV_DIFF_VERTICAL = CSV_DIFF_LINECOUNT | CSV_DIFF_LINEOFFS
const ScCsvDiff CSV_DIFF_CURSOR = CSV_DIFF_RULERCURSOR | CSV_DIFF_GRIDCURSOR;
-
-
/** A structure containing all layout data valid for both ruler and data grid
(i.e. scroll position or column width). */
struct ScCsvLayoutData
@@ -169,8 +157,6 @@ inline bool operator!=( const ScCsvLayoutData& rData1, const ScCsvLayoutData& rD
}
-
-
/** Enumeration of possible commands to change any settings of the CSV controls.
@descr Controls have to send commands instead of changing their settings directly.
This helps to keep the different controls consistent to each other.
@@ -215,8 +201,6 @@ enum ScCsvCmdType
};
-
-
/** Data for a CSV control command. The stored position data is aways character based,
it's never a column index (required for internal consistency). */
class ScCsvCmd
@@ -243,8 +227,6 @@ inline void ScCsvCmd::Set( ScCsvCmdType eType, sal_Int32 nParam1, sal_Int32 nPar
}
-
-
/** Base class for the CSV ruler and the data grid control. Implements command handling. */
class SC_DLLPUBLIC ScCsvControl : public Control
{
@@ -417,8 +399,6 @@ protected:
};
-
-
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */