summaryrefslogtreecommitdiff
path: root/libopie2
authormickeyl <mickeyl>2004-04-24 11:04:03 (UTC)
committer mickeyl <mickeyl>2004-04-24 11:04:03 (UTC)
commit9ac401fbe5c80f710757926920d734e93a7e159b (patch) (side-by-side diff)
tree1011b8aed028e9f6f0a9118e0fcd8ae49d211a38 /libopie2
parent34595890e8373c91a3f5b120dfd63ea3023e46c5 (diff)
downloadopie-9ac401fbe5c80f710757926920d734e93a7e159b.zip
opie-9ac401fbe5c80f710757926920d734e93a7e159b.tar.gz
opie-9ac401fbe5c80f710757926920d734e93a7e159b.tar.bz2
gcc3.4 fixlet
Diffstat (limited to 'libopie2') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/examples/opiecore/onotifydemo/onotifydemo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie2/examples/opiecore/onotifydemo/onotifydemo.cpp b/libopie2/examples/opiecore/onotifydemo/onotifydemo.cpp
index 74a8158..b9ff9db 100644
--- a/libopie2/examples/opiecore/onotifydemo/onotifydemo.cpp
+++ b/libopie2/examples/opiecore/onotifydemo/onotifydemo.cpp
@@ -101,7 +101,7 @@ public:
}
public slots:
- void modifierClicked( int modifier ) { (int)m ^= modifier; };
+ void modifierClicked( int modifier ) { m = static_cast<OFileNotificationType>( (int)m ^ int(modifier) ); };
void addSingle() { addTrigger(); };
void addMulti() { addTrigger( true ); };