diff options
author | Michael Krelin <hacker@klever.net> | 2007-05-10 20:18:53 +0000 |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-05-10 20:18:53 +0000 |
commit | e507cdb48294fea5ca7c2afc6d2e814facdacfe8 (patch) | |
tree | fadc73ce06a7e5c9c61a42acff8e254acb83f158 /packages/opie-irdaapplet/files | |
parent | dd9e6aae1c7bf6c7ad76105a752dd87c44677431 (diff) |
opie-irdaapplet: added patch to take operator precedence into account.
Diffstat (limited to 'packages/opie-irdaapplet/files')
-rw-r--r-- | packages/opie-irdaapplet/files/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/opie-irdaapplet/files/learning-cpp.patch | 13 |
2 files changed, 13 insertions, 0 deletions
diff --git a/packages/opie-irdaapplet/files/.mtn2git_empty b/packages/opie-irdaapplet/files/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/opie-irdaapplet/files/.mtn2git_empty diff --git a/packages/opie-irdaapplet/files/learning-cpp.patch b/packages/opie-irdaapplet/files/learning-cpp.patch new file mode 100644 index 0000000000..60e46fd133 --- /dev/null +++ b/packages/opie-irdaapplet/files/learning-cpp.patch @@ -0,0 +1,13 @@ +diff --git a/irda.cpp b/irda.cpp +index d57104b..848ddb4 100644 +--- a/irda.cpp ++++ b/irda.cpp +@@ -54,7 +54,7 @@ IrdaApplet::IrdaApplet ( QWidget *parent, const char *name ) : + setFixedHeight( AppLnk::smallIconSize() ); + setFixedWidth( AppLnk::smallIconSize() ); + +- if (m_sockfd = ::socket ( PF_INET, SOCK_DGRAM, IPPROTO_IP ) == -1) ++ if ( ( m_sockfd = ::socket ( PF_INET, SOCK_DGRAM, IPPROTO_IP ) ) == -1) + perror ( "failed grabbing IrDA socket" ); + + m_irdaOnPixmap = |