projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix for DLL build: wxEvtHandlerArray should be in wxBase as it's used by wxEventLoopB...
[wxWidgets.git]
/
src
/
unix
/
stackwalk.cpp
diff --git
a/src/unix/stackwalk.cpp
b/src/unix/stackwalk.cpp
index fe968ea54eb589b7c1b44a6dfbe73a5fa297c0b7..d65700afa6dc9768814e1dac028758622c874604 100644
(file)
--- a/
src/unix/stackwalk.cpp
+++ b/
src/unix/stackwalk.cpp
@@
-67,7
+67,7
@@
public:
private:
FILE *m_fp;
private:
FILE *m_fp;
- DECLARE_NO_COPY_CLASS(wxStdioPipe)
+ wxDECLARE_NO_COPY_CLASS(wxStdioPipe);
};
// ============================================================================
};
// ============================================================================
@@
-254,7
+254,8
@@
int wxStackWalker::InitFrames(wxStackFrame *arr, size_t n, void **addresses, cha
}
else
{
}
else
{
- wxLogDebug(_T("cannot read addr2line output for %u-th stack frame!"), unsigned(i));
+ wxLogDebug(_T("cannot read addr2line output for stack frame #%lu"),
+ (unsigned long)i);
return false;
}
return false;
}