summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/tools/b3dtrans.hxx1
-rw-r--r--include/tools/urlobj.hxx2
-rw-r--r--svl/source/misc/inethist.cxx2
-rw-r--r--tools/source/fsys/urlobj.cxx5
-rw-r--r--tools/source/generic/b3dtrans.cxx7
5 files changed, 2 insertions, 15 deletions
diff --git a/include/tools/b3dtrans.hxx b/include/tools/b3dtrans.hxx
index ba3e87b32b31..f9a3e50ef1b6 100644
--- a/include/tools/b3dtrans.hxx
+++ b/include/tools/b3dtrans.hxx
@@ -181,7 +181,6 @@ protected:
void PostSetObjectTrans();
void PostSetOrientation();
void PostSetProjection();
- void PostSetViewport();
virtual void DeviceRectangleChange();
};
diff --git a/include/tools/urlobj.hxx b/include/tools/urlobj.hxx
index 9610aab6b3a8..3032b45c8c0b 100644
--- a/include/tools/urlobj.hxx
+++ b/include/tools/urlobj.hxx
@@ -1046,7 +1046,7 @@ public:
OUString CutExtension(DecodeMechanism eMechanism = DECODE_TO_IURI,
rtl_TextEncoding eCharset = RTL_TEXTENCODING_UTF8);
- bool IsCaseSensitive() const;
+ static bool IsCaseSensitive() { return true; }
private:
diff --git a/svl/source/misc/inethist.cxx b/svl/source/misc/inethist.cxx
index c7e70569e8fe..ab7e4e3bb2cf 100644
--- a/svl/source/misc/inethist.cxx
+++ b/svl/source/misc/inethist.cxx
@@ -336,7 +336,7 @@ void INetURLHistory::NormalizeUrl_Impl (INetURLObject &rUrl)
switch (rUrl.GetProtocol())
{
case INET_PROT_FILE:
- if (!rUrl.IsCaseSensitive())
+ if (!INetURLObject::IsCaseSensitive())
{
OUString aPath (rUrl.GetURLPath(INetURLObject::NO_DECODE).toAsciiLowerCase());
rUrl.SetURLPath (aPath, INetURLObject::NOT_CANONIC);
diff --git a/tools/source/fsys/urlobj.cxx b/tools/source/fsys/urlobj.cxx
index 1d3797c05df3..07034d1c1dad 100644
--- a/tools/source/fsys/urlobj.cxx
+++ b/tools/source/fsys/urlobj.cxx
@@ -5325,9 +5325,4 @@ OUString INetURLObject::CutExtension(DecodeMechanism eMechanism,
? aTheExtension : OUString();
}
-bool INetURLObject::IsCaseSensitive() const
-{
- return true;
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/tools/source/generic/b3dtrans.cxx b/tools/source/generic/b3dtrans.cxx
index d7c22b07be41..cf27e1844ddc 100644
--- a/tools/source/generic/b3dtrans.cxx
+++ b/tools/source/generic/b3dtrans.cxx
@@ -326,9 +326,6 @@ void B3dTransformationSet::CalcViewport()
maScale.setX((maSetBound.GetWidth() - 1L) / 2.0);
maScale.setY((maSetBound.GetHeight() - 1L) / -2.0);
maScale.setZ(ZBUFFER_DEPTH_RANGE / 2.0);
-
- // React to change of viewport
- PostSetViewport();
}
void B3dTransformationSet::SetRatio(double fNew)
@@ -390,10 +387,6 @@ void B3dTransformationSet::SetViewportRectangle(Rectangle& rRect, Rectangle& rVi
}
}
-void B3dTransformationSet::PostSetViewport()
-{
-}
-
// direct access to various transformations
const basegfx::B3DPoint B3dTransformationSet::WorldToEyeCoor(const basegfx::B3DPoint& rVec)