From a7e5cafec77b775856c8ef3855035a8ed9efc62b Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Sat, 19 Jan 2019 14:04:12 -0300 Subject: [PATCH] fix typo from mass search and replace --- lib/db/arrienda.vala | 2 +- lib/db/asociado.vala | 2 +- lib/db/categoria.vala | 2 +- lib/db/ciudad.vala | 2 +- lib/db/contacto_emergencia.vala | 2 +- lib/db/descuento.vala | 2 +- lib/db/empresa.vala | 2 +- lib/db/enfermedad.vala | 2 +- lib/db/especialidad.vala | 2 +- lib/db/guia.vala | 2 +- lib/db/lugar.vala | 2 +- lib/db/participa.vala | 2 +- lib/db/posee.vala | 2 +- lib/db/realiza.vala | 2 +- lib/db/region.vala | 2 +- lib/db/regiones_sin_descuento.vala | 2 +- lib/db/requerir_auto.vala | 2 +- lib/db/tiene_enfermedad.vala | 2 +- lib/db/total_arriendos.vala | 2 +- lib/db/total_coordinadores.vala | 2 +- lib/db/total_turistas.vala | 2 +- lib/db/total_vehiculos.vala | 2 +- lib/db/turista.vala | 2 +- lib/db/valores_tours.vala | 2 +- lib/db/vehiculo.vala | 2 +- lib/db/views.vala | 10 +++++----- 26 files changed, 30 insertions(+), 30 deletions(-) diff --git a/lib/db/arrienda.vala b/lib/db/arrienda.vala index 7cf898a..92d63e0 100644 --- a/lib/db/arrienda.vala +++ b/lib/db/arrienda.vala @@ -54,7 +54,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of Arrienda */ public static List get_all_arriendas (Connection conn) { diff --git a/lib/db/asociado.vala b/lib/db/asociado.vala index 4db5e80..78973fe 100644 --- a/lib/db/asociado.vala +++ b/lib/db/asociado.vala @@ -48,7 +48,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of Asociado */ public static List get_all_asociados (Connection conn) { diff --git a/lib/db/categoria.vala b/lib/db/categoria.vala index c34d2d9..be53ed0 100644 --- a/lib/db/categoria.vala +++ b/lib/db/categoria.vala @@ -42,7 +42,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of Categoria */ public static List get_all_categorias (Connection conn) { diff --git a/lib/db/ciudad.vala b/lib/db/ciudad.vala index f227f93..6dcd7c8 100644 --- a/lib/db/ciudad.vala +++ b/lib/db/ciudad.vala @@ -48,7 +48,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of Ciudad */ public static List get_all_ciudades (Connection conn) { diff --git a/lib/db/contacto_emergencia.vala b/lib/db/contacto_emergencia.vala index db398a9..95eaea8 100644 --- a/lib/db/contacto_emergencia.vala +++ b/lib/db/contacto_emergencia.vala @@ -48,7 +48,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of ContactoEmergencia */ public static List get_all_contactos (Connection conn) { diff --git a/lib/db/descuento.vala b/lib/db/descuento.vala index 08d13ba..d1383a6 100644 --- a/lib/db/descuento.vala +++ b/lib/db/descuento.vala @@ -48,7 +48,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of Descuento */ public static List get_all_descuentos (Connection conn) { diff --git a/lib/db/empresa.vala b/lib/db/empresa.vala index 91ec1fa..ee555ce 100644 --- a/lib/db/empresa.vala +++ b/lib/db/empresa.vala @@ -54,7 +54,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of Empresa */ public static List get_all_empresas (Connection conn) { diff --git a/lib/db/enfermedad.vala b/lib/db/enfermedad.vala index 03897d0..394258f 100644 --- a/lib/db/enfermedad.vala +++ b/lib/db/enfermedad.vala @@ -42,7 +42,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of Enfermedad */ public static List get_all_enfermedades (Connection conn) { diff --git a/lib/db/especialidad.vala b/lib/db/especialidad.vala index 6cecd4c..36092ba 100644 --- a/lib/db/especialidad.vala +++ b/lib/db/especialidad.vala @@ -42,7 +42,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of Especialidad */ public static List get_all_especialidades (Connection conn) { diff --git a/lib/db/guia.vala b/lib/db/guia.vala index 44cd2ce..8e0ed2c 100644 --- a/lib/db/guia.vala +++ b/lib/db/guia.vala @@ -60,7 +60,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of Guia */ public static List get_all_guias (Connection conn) { diff --git a/lib/db/lugar.vala b/lib/db/lugar.vala index 6e2205a..38219d4 100644 --- a/lib/db/lugar.vala +++ b/lib/db/lugar.vala @@ -60,7 +60,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of Lugar */ public static List get_all_lugares (Connection conn) { diff --git a/lib/db/participa.vala b/lib/db/participa.vala index 01c8203..4b90a05 100644 --- a/lib/db/participa.vala +++ b/lib/db/participa.vala @@ -48,7 +48,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of Participa */ public static List get_all_participas (Connection conn) { diff --git a/lib/db/posee.vala b/lib/db/posee.vala index 55c6983..0f0b15b 100644 --- a/lib/db/posee.vala +++ b/lib/db/posee.vala @@ -48,7 +48,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of Posee */ public static List get_all_posees (Connection conn) { diff --git a/lib/db/realiza.vala b/lib/db/realiza.vala index 942eaff..502f5fd 100644 --- a/lib/db/realiza.vala +++ b/lib/db/realiza.vala @@ -48,7 +48,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of Realiza */ public static List get_all_realizas (Connection conn) { diff --git a/lib/db/region.vala b/lib/db/region.vala index c881074..86f4a12 100644 --- a/lib/db/region.vala +++ b/lib/db/region.vala @@ -42,7 +42,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of Region */ public static List get_all_regiones (Connection conn) { diff --git a/lib/db/regiones_sin_descuento.vala b/lib/db/regiones_sin_descuento.vala index ddb7b37..e22fd5d 100644 --- a/lib/db/regiones_sin_descuento.vala +++ b/lib/db/regiones_sin_descuento.vala @@ -41,7 +41,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of RegionesSinDescuento */ public static List get_all_regions_without_discount (Connection conn) { diff --git a/lib/db/requerir_auto.vala b/lib/db/requerir_auto.vala index ca2e141..c16d93a 100644 --- a/lib/db/requerir_auto.vala +++ b/lib/db/requerir_auto.vala @@ -48,7 +48,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of RequerirAuto */ public static List get_all_requerir_autos (Connection conn) { diff --git a/lib/db/tiene_enfermedad.vala b/lib/db/tiene_enfermedad.vala index 3eb8bd6..902c397 100644 --- a/lib/db/tiene_enfermedad.vala +++ b/lib/db/tiene_enfermedad.vala @@ -42,7 +42,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of TieneEnfermedad */ public static List get_all_tiene_enfermedades (Connection conn) { diff --git a/lib/db/total_arriendos.vala b/lib/db/total_arriendos.vala index 050f486..2dccf3f 100644 --- a/lib/db/total_arriendos.vala +++ b/lib/db/total_arriendos.vala @@ -36,7 +36,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of TotalArriendos */ public static List get_all_rent_totals (Connection conn) { diff --git a/lib/db/total_coordinadores.vala b/lib/db/total_coordinadores.vala index d5f7ba0..6468979 100644 --- a/lib/db/total_coordinadores.vala +++ b/lib/db/total_coordinadores.vala @@ -48,7 +48,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of TotalCoordinadores */ public static List get_all_coordinator_totals (Connection conn) { diff --git a/lib/db/total_turistas.vala b/lib/db/total_turistas.vala index 6e73907..2c40819 100644 --- a/lib/db/total_turistas.vala +++ b/lib/db/total_turistas.vala @@ -48,7 +48,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of TotalTuristas */ public static List get_all_tourist_totals (Connection conn) { diff --git a/lib/db/total_vehiculos.vala b/lib/db/total_vehiculos.vala index 7b9b6fe..00b8eda 100644 --- a/lib/db/total_vehiculos.vala +++ b/lib/db/total_vehiculos.vala @@ -36,7 +36,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of TotalVehiculos */ public static List get_all_vehicle_totals (Connection conn) { diff --git a/lib/db/turista.vala b/lib/db/turista.vala index 0dbe697..58c1df7 100644 --- a/lib/db/turista.vala +++ b/lib/db/turista.vala @@ -54,7 +54,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of Turista */ public static List get_all_turistas (Connection conn) { diff --git a/lib/db/valores_tours.vala b/lib/db/valores_tours.vala index e28f0a0..57dc51a 100644 --- a/lib/db/valores_tours.vala +++ b/lib/db/valores_tours.vala @@ -48,7 +48,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of ValoresTours */ public static List get_all_tour_sales (Connection conn) { diff --git a/lib/db/vehiculo.vala b/lib/db/vehiculo.vala index 255c53b..7c015e0 100644 --- a/lib/db/vehiculo.vala +++ b/lib/db/vehiculo.vala @@ -54,7 +54,7 @@ namespace LibSernatur { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of Vehiculo */ public static List get_all_vehiculos (Connection conn) { diff --git a/lib/db/views.vala b/lib/db/views.vala index dce46b3..a4bcdf0 100644 --- a/lib/db/views.vala +++ b/lib/db/views.vala @@ -27,7 +27,7 @@ namespace LibSernatur { public class Q1 : Object { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of RegionesSinDescuento */ public static List get_regions_without_discount (Connection conn) { @@ -90,7 +90,7 @@ SELECT nombreRegion, cantidad FROM REGIONES_SINDESCUENTO WHERE (cantidad = (SELE /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of Q2 */ public static List get_value_received (Connection conn) { @@ -135,7 +135,7 @@ FROM VALORES_TOURS V FULL JOIN TOUR_DESCUENTOS T ON (T.idT = V.idT) GROUP BY (V. public class Q3 : Object { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of TotalCoordinadores */ public static List get_total_coordinators (Connection conn) { @@ -181,7 +181,7 @@ FROM TOTAL_COORDINADORES WHERE (TotalCoordinadores = (SELECT MAX(TotalCoordinado public class Q4 : Object { /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of TotalTuristas */ public static List get_total_tourists (Connection conn) { @@ -239,7 +239,7 @@ SELECT nombreT, TotalTuristas FROM TOTAL_TURISTAS WHERE (TotalTuristas = (SELECT /** * Get all tuples and fields from database - * @param conn.db.The database conn.db.ction to use + * @param conn The database connection to use * @return Returns a list of Q5 */ public static List get_percentage (Connection conn) {