~ubuntu-branches/debian/jessie/gsmlib/jessie

« back to all changes in this revision

Viewing changes to g41.patch

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2006-05-20 21:54:42 UTC
  • mfrom: (3.1.1 dapper)
  • Revision ID: james.westby@ubuntu.com-20060520215442-nb9iiu95mzkqfejf
Tags: 1.10-10
FTBFS with G++ 4.1: extra qualifications (Closes: #356109)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--- ./gsmlib/gsm_me_ta.h~       2006-03-09 19:15:59.000000000 +0000
 
2
+++ ./gsmlib/gsm_me_ta.h        2006-03-09 19:16:31.000000000 +0000
 
3
@@ -291,8 +291,8 @@
 
4
     // 3 disable phone receive RF circuits only
 
5
     // 4 disable phone both transmit and receive RF circuits
 
6
     // 5...127 implementation-defined
 
7
-    int MeTa::getFunctionalityLevel() throw(GsmException);
 
8
-    void MeTa::setFunctionalityLevel(int level) throw(GsmException);
 
9
+    int getFunctionalityLevel() throw(GsmException);
 
10
+    void setFunctionalityLevel(int level) throw(GsmException);
 
11
 
 
12
     // return battery charge status (+CBC):
 
13
     // 0 ME is powered by the battery
 
14
@@ -386,13 +386,13 @@
 
15
     void setCallWaitingLockStatus(FacilityClass cl,
 
16
                                   bool lock)throw(GsmException);
 
17
 
 
18
-    void MeTa::setCLIRPresentation(bool enable) throw(GsmException);
 
19
+    void setCLIRPresentation(bool enable) throw(GsmException);
 
20
     //(+CLIR)
 
21
     
 
22
     // 0:according to the subscription of the CLIR service
 
23
     // 1:CLIR invocation
 
24
     // 2:CLIR suppression
 
25
-    int MeTa::getCLIRPresentation() throw(GsmException);
 
26
+    int getCLIRPresentation() throw(GsmException);
 
27
 
 
28
     friend class Phonebook;
 
29
     friend class SMSStore;