summaryrefslogtreecommitdiff
path: root/svx/source/dialog/framelink.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/dialog/framelink.cxx')
-rw-r--r--svx/source/dialog/framelink.cxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/svx/source/dialog/framelink.cxx b/svx/source/dialog/framelink.cxx
index 3938701e9967..79c64c029ef2 100644
--- a/svx/source/dialog/framelink.cxx
+++ b/svx/source/dialog/framelink.cxx
@@ -43,7 +43,6 @@ namespace svx {
namespace frame {
-
namespace {
typedef std::vector< Point > PointVec;
@@ -171,7 +170,6 @@ struct DiagBordersResult
};
-
/** A helper struct containing two points of a line.
*/
struct LinePoints
@@ -187,7 +185,6 @@ struct LinePoints
};
-
/** Rounds and casts a double value to a long value. */
inline long lclD2L( double fValue )
{
@@ -344,7 +341,6 @@ inline long lclGetBehindEnd( const Style& rBorder )
// Linking functions
-
// Linking of single horizontal line ends.
/** Calculates X offsets for the left end of a single horizontal frame border.
@@ -612,8 +608,6 @@ void lclLinkVerFrameBorder(
}
-
-
// Linking of diagonal frame borders.
/** Calculates clipping offsets for a top-left to bottom-right frame border.
@@ -697,7 +691,6 @@ void lclLinkDiagFrameBorders(
// Drawing functions
-
// Simple helper functions
/** Converts sub units to OutputDevice map units. */
@@ -752,7 +745,6 @@ void lclSetColorToOutDev( OutputDevice& rDev, const Color& rColor, const Color*
}
-
// Drawing of horizontal frame borders.
/** Draws a horizontal thin or thick line into the passed output device.
@@ -1119,7 +1111,6 @@ void lclDrawDiagFrameBorders(
}
-
} // namespace
@@ -1311,7 +1302,6 @@ double GetHorDiagAngle( long nWidth, long nHeight )
}
-
long GetTLDiagOffset( long nVerOffs, long nDiagOffs, double fAngle )
{
return lclD2L( nVerOffs / tan( fAngle ) + nDiagOffs / sin( fAngle ) );
@@ -1333,7 +1323,6 @@ long GetTRDiagOffset( long nVerOffs, long nDiagOffs, double fAngle )
}
-
bool CheckFrameBorderConnectable( const Style& rLBorder, const Style& rRBorder,
const Style& rTFromTL, const Style& rTFromT, const Style& rTFromTR,
const Style& rBFromBL, const Style& rBFromB, const Style& rBFromBR )
@@ -1489,7 +1478,6 @@ void DrawHorFrameBorder( OutputDevice& rDev,
}
-
void DrawVerFrameBorder( OutputDevice& rDev,
const Point& rTPos, const Point& rBPos, const Style& rBorder,
const DiagStyle& rTFromBL, const Style& rTFromL, const Style& rTFromT, const Style& rTFromR, const DiagStyle& rTFromBR,
@@ -1507,7 +1495,6 @@ void DrawVerFrameBorder( OutputDevice& rDev,
}
-
void DrawDiagFrameBorders(
OutputDevice& rDev, const Rectangle& rRect, const Style& rTLBR, const Style& rBLTR,
const Style& rTLFromB, const Style& rTLFromR, const Style& rBRFromT, const Style& rBRFromL,
@@ -1524,7 +1511,6 @@ void DrawDiagFrameBorders(
}
-
}
}