Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Patryk Skowroński <[email protected]>
  • Loading branch information
Patryk Skowroński committed Aug 3, 2023
1 parent 44fdb52 commit fe01deb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion avogadro/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,8 @@ MainWindow::MainWindow(const QStringList& fileNames, bool disableSettings)

m_TDxController = new TDxController(this, glWidget);

connect(this, &MainWindow::moleculeChanged, m_TDxController, &TDxController::updateMolecule);
connect(this, &MainWindow::moleculeChanged, m_TDxController,
&TDxController::updateMolecule);

m_TDxController->enableController();

Expand Down
5 changes: 4 additions & 1 deletion avogadro/menubuilder.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ class MenuBuilder : public QObject
/**
* @brief Get the map of string to action lists.
*/
const QMap<QString, QList<QAction*>> &getMenuActions() const { return m_menuActions; };
const QMap<QString, QList<QAction*>>& getMenuActions() const
{
return m_menuActions;
};

private:
/** A map of string to action lists. */
Expand Down

0 comments on commit fe01deb

Please sign in to comment.