summaryrefslogtreecommitdiff
path: root/core/apps/textedit/textedit.cpp
authorllornkcor <llornkcor>2002-02-24 17:15:20 (UTC)
committer llornkcor <llornkcor>2002-02-24 17:15:20 (UTC)
commitc8c16041847fa96ffc4283fcedf4431917bc7bf5 (patch) (side-by-side diff)
treee26e910dd0c62038a54c1d91b24c2515a15a601e /core/apps/textedit/textedit.cpp
parent8b61e69b52e8bb046f23d8dea734edcdc90e805e (diff)
downloadopie-c8c16041847fa96ffc4283fcedf4431917bc7bf5.zip
opie-c8c16041847fa96ffc4283fcedf4431917bc7bf5.tar.gz
opie-c8c16041847fa96ffc4283fcedf4431917bc7bf5.tar.bz2
changed lstat to stat
Diffstat (limited to 'core/apps/textedit/textedit.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/textedit/textedit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp
index 515fcdc..603f032 100644
--- a/core/apps/textedit/textedit.cpp
+++ b/core/apps/textedit/textedit.cpp
@@ -702,13 +702,13 @@ bool TextEdit::save()
QString rt = editor->text();
currentFileName= name ;
qDebug("saveFile "+currentFileName);
struct stat buf;
mode_t mode;
- lstat(file.latin1(), &buf);
+ stat(file.latin1(), &buf);
mode = buf.st_mode;
doc->setName( name);
FileManager fm;
if ( !fm.saveFile( *doc, rt ) ) {
return false;