Dan Nissenbaum

Greenfield, MA

Age: 42

Freelance C++ and PHP developer, with PhD in physics, in Greenfield, MA, USA

1d
awarded Popular Question
1d
comment "No Signal" when attempting remote console redirection using a BMC with RMM4
Thanks for commenting. If you do figure something out, I'd be pleased to know!
May
19
awarded Excavator
May
19
revised Why isn't the [] operator const for STL maps?
added 1 characters in body
May
18
comment Qt signals/slots: Is it an error to emit a signal from a temporary object?
Isn't it true that if the signal is being emitted from a different thread than the thread in which the slot is called, that the emit call might be asynchronous?
May
18
asked Qt signals/slots: Is it an error to emit a signal from a temporary object?
May
8
revised Downloading and integrating Qt5 with Visual Studio 2012
deleted 165 characters in body
May
8
revised Downloading and integrating Qt5 with Visual Studio 2012
added 35 characters in body
May
8
comment Is it safe to use *virtual* multiple inheritance if QObject is being derived from DIRECTLY?
I wonder whether it's on the list for Qt to someday support multiple inheritance of QObject-derived classes.
May
8
accepted Is it safe to use *virtual* multiple inheritance if QObject is being derived from DIRECTLY?
May
8
comment Is it safe to use *virtual* multiple inheritance if QObject is being derived from DIRECTLY?
Indeed - even defining a signal for the Right class (and presumably Left is the same, as well), results in a compiler error on the following moc-produced line: Right *_t = static_cast<Right *>(_o); with _o a QObject. So not only is the construct not supported by Qt - it won't even compile.
May
8
comment Is it safe to use *virtual* multiple inheritance if QObject is being derived from DIRECTLY?
@Useless I hope to be able to tie in Qt signals and slots for Top, Left, Right, and/or Bottom.
May
8
asked Is it safe to use *virtual* multiple inheritance if QObject is being derived from DIRECTLY?
May
8
comment How to disable version control features in Qt Creator?
(P.S. I looked through every single menu EXCEPT the Help menu. I can't think of any other program that has program feature settings in the Help menu. Ha!)
May
8
accepted How to disable version control features in Qt Creator?
May
8
comment How to disable version control features in Qt Creator?
Fabulous, thanks.
May
8
asked How to disable version control features in Qt Creator?
May
5
comment this pointer to base class constructor?
Actually - the constructor Derived() is public, because by default all members of a struct are public. If Derived were a class rather than a struct, then by default all members would be private.
May
5
comment Finding current executable's path without /proc/self/exe
If you're able to use Qt, they've covered it: QDesktopServices::storageLocation(QDesktopServices::DataLocation) . See qt-project.org/doc/qt-4.8/qdesktopservices.html
May
5
comment Obtaining cross-platform path for config file (C/C++)
Try QDesktopServices::storageLocation(QDesktopServices::DataLocation) . See qt-project.org/doc/qt-4.8/qdesktopservices.html
1 2 3 4 5