From kdevelop-bugs Mon Jan 29 18:59:27 2007 From: Andreas Pakulat Date: Mon, 29 Jan 2007 18:59:27 +0000 To: kdevelop-bugs Subject: [Bug 140848] #include macro when subclassing .ui files does not keep Message-Id: <20070129185927.28069.qmail () ktown ! kde ! org> X-MARC-Message: https://marc.info/?l=kdevelop-bugs&m=118306963712076 ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=140848 apaku gmx de changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From apaku gmx de 2007-01-29 19:59 ------- SVN commit 628322 by apaku: Don't force the lower-case filename for the #include line BUG:140848 M +1 -1 subclass_qt4_template.cpp M +1 -1 subclass_template.cpp --- branches/kdevelop/3.4/languages/cpp/subclassing_template/subclass_qt4_template.cpp #628321:628322 @ -1,6 +1,6 @ -#include "$NEWFILENAMELC$.h" +#include "$NEWFILENAME$.h" $NEWCLASS$::$NEWCLASS$(QWidget* parent, Qt::WFlags fl) : $QTBASECLASS$( parent, fl ), Ui::$BASECLASS$() --- branches/kdevelop/3.4/languages/cpp/subclassing_template/subclass_template.cpp #628321:628322 @ -1,6 +1,6 @ -#include "$NEWFILENAMELC$.h" +#include "$NEWFILENAME$.h" $NEWCLASS$::$NEWCLASS$(QWidget* parent, const char* name$CAN_BE_MODAL_CPP1$, WFlags fl) : $BASECLASS$(parent,name$CAN_BE_MODAL_CPP2$,fl)