Skip to content

Commit

Permalink
Add empty constructor for RoomReservationPopup
Browse files Browse the repository at this point in the history
  • Loading branch information
Ville Tainio committed Jun 22, 2015
1 parent 918b598 commit 46132c3
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@

public class RoomReservationPopup extends Dialog {
LobbyReservationRowView reservationView;

public RoomReservationPopup() {
super(null, 0);
}

public RoomReservationPopup(Context context, TimeSpan timeLimits, TimeSpan presetTime, Room room) {
super(context, R.style.Theme_Transparent);
setCancelable(true);
Expand Down

0 comments on commit 46132c3

Please sign in to comment.