diff options
author | Sebastian Reichel <sre@ring0.de> | 2013-05-22 19:18:35 +0200 |
---|---|---|
committer | Sebastian Reichel <sre@ring0.de> | 2013-05-22 19:18:35 +0200 |
commit | e0a73df982d475e83f866ff2e06f9b281fa300c0 (patch) | |
tree | 4a9847dd8662c9f0d53fe7519da3234769fa0802 /src | |
parent | adb1355b272b80cf9904cd0e04c4f26d2528203f (diff) | |
download | serial-barcode-scanner-e0a73df982d475e83f866ff2e06f9b281fa300c0.tar.bz2 |
db: fix new_price in interface
Diffstat (limited to 'src')
-rw-r--r-- | src/database/db-interface.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/db-interface.vala b/src/database/db-interface.vala index 5259fb1..c1df782 100644 --- a/src/database/db-interface.vala +++ b/src/database/db-interface.vala @@ -25,7 +25,7 @@ public interface Database : Object { public abstract string undo(int32 user) throws IOError, DatabaseError; public abstract void restock(int user, uint64 product, uint amount, uint price, int supplier, int64 best_before_date) throws IOError, DatabaseError; public abstract void new_product(uint64 id, string name, int memberprice, int guestprice) throws IOError, DatabaseError; - public abstract bool new_price(uint64 product, int64 timestamp, int memberprice, int guestprice) throws IOError, DatabaseError; + public abstract void new_price(uint64 product, int64 timestamp, int memberprice, int guestprice) throws IOError, DatabaseError; public abstract bool check_user_password(int32 user, string password) throws IOError; public abstract void set_user_password(int32 user, string password) throws IOError, DatabaseError; public abstract void set_sessionid(int user, string sessionid) throws IOError, DatabaseError; |