summaryrefslogtreecommitdiff
path: root/vcl/unx/generic
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-09-07 22:54:13 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-09-08 09:29:31 +0100
commit3a53904ae64fa87216fcc972dbc746068c640818 (patch)
tree85dabe4176a00037e46920c8dd1c72a1656c95c6 /vcl/unx/generic
parent595ce66e708da9e742a2c418f013fc675ffc45a3 (diff)
callcatcher: update list
Diffstat (limited to 'vcl/unx/generic')
-rw-r--r--vcl/unx/generic/printergfx/printerjob.cxx17
1 files changed, 0 insertions, 17 deletions
diff --git a/vcl/unx/generic/printergfx/printerjob.cxx b/vcl/unx/generic/printergfx/printerjob.cxx
index b0db3def22c5..7ae6a28372f6 100644
--- a/vcl/unx/generic/printergfx/printerjob.cxx
+++ b/vcl/unx/generic/printergfx/printerjob.cxx
@@ -218,23 +218,6 @@ PrinterJob::PrinterJob () :
namespace psp
{
-/* check whether the given name points to a directory which is
- usable for the user */
-sal_Bool
-existsTmpDir (const char* pName)
-{
- struct stat aFileStatus;
-
- if (pName == NULL)
- return sal_False;
- if (stat(pName, &aFileStatus) != 0)
- return sal_False;
- if (! S_ISDIR(aFileStatus.st_mode))
- return sal_False;
-
- return access(pName, W_OK | R_OK) == 0 ? sal_True : sal_False;
-}
-
/* return the username in the given buffer */
sal_Bool
getUserName (char* pName, int nSize)