Skip to content

Commit

Permalink
Fix no-argument constructor.
Browse files Browse the repository at this point in the history
  • Loading branch information
Beirdo committed Jan 6, 2011
1 parent 88d17d3 commit 55661db
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions mythtv/libs/libmythdb/mythsystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ void MythSystem::initializePrivate(void)
#endif
}

MythSystem::MythSystem()
{
m_semReady.release(1); // initialize
initializePrivate();
}

MythSystem::MythSystem(const QString &command, uint flags)
{
m_semReady.release(1); // initialize
Expand Down
2 changes: 1 addition & 1 deletion mythtv/libs/libmythdb/mythsystem.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class MPUBLIC MythSystem : public QObject
Q_OBJECT

public:
MythSystem() {};
MythSystem();
MythSystem(const QString &, uint);
MythSystem(const QString &, const QStringList &, uint);
MythSystem(const MythSystem &other);
Expand Down

0 comments on commit 55661db

Please sign in to comment.