Changes in src/UIElements/QT4/QTDialog.cpp [bf3817:e5c0a1]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/QT4/QTDialog.cpp
rbf3817 re5c0a1 6 6 */ 7 7 8 // include config.h9 #ifdef HAVE_CONFIG_H10 #include <config.h>11 #endif12 13 8 #include "UIElements/QT4/QTDialog.hpp" 14 15 #include <boost/lexical_cast.hpp>16 9 17 10 #include <string> … … 40 33 #include "Descriptors/AtomIdDescriptor.hpp" 41 34 #include "Descriptors/MoleculeIdDescriptor.hpp" 42 #include " LinearAlgebra/Matrix.hpp"35 #include "Matrix.hpp" 43 36 #include "Box.hpp" 44 37 … … 486 479 parent(_parent) 487 480 { 481 const Matrix& M = World::getInstance().getDomain().getM(); 482 const char *coords[3] = {"x:","y:","z:"}; 488 483 mainLayout= new QHBoxLayout(); 489 484 titleLabel = new QLabel(QString(getTitle().c_str())); … … 518 513 parent(_parent) 519 514 { 515 const Matrix& M = World::getInstance().getDomain().getM(); 516 const char *coords[3] = {"x:","y:","z:"}; 520 517 mainLayout= new QHBoxLayout(); 521 518 titleLabel = new QLabel(QString(getTitle().c_str()));
Note:
See TracChangeset
for help on using the changeset viewer.