Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added disconnected signals #1

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open

Conversation

jcollonville
Copy link

CuteIPCInterface will now emit a disconnected signal when the connection is lost. Useful for trying to reconnect automaticaly.

@@ -325,6 +328,12 @@ CuteIPCInterface::CuteIPCInterface(CuteIPCInterfacePrivate& dd, QObject* parent)
}


bool CuteIPCInterface::isConnected() {
Q_D(CuteIPCInterface);
d->q_ptr = this;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

q_ptr is set in CuteIPCInterface constructor (CuteIPCInterface.cpp:299). Why duplicate it here?

@@ -15,6 +15,7 @@ CuteIPCInterfaceConnection::CuteIPCInterfaceConnection(QLocalSocket* socket, QOb
m_socket(socket),
m_nextBlockSize(0)
{

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unnecessary new line at the beginning of method

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants